# BizIntel API – EV Charging Stations Lookup

> BizIntel API – EV Charging Stations Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns nearby EV charging stations for a given geographic location, including station titles and availability data.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/geography/charging-stations
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-ev-charging-stations-lookup-6a3774e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MgcglMJNyuj_nhm029hsB

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bizintel-api-ev-charging-stations-lookup-6a3774e7 -d '<json body>'
```

Example prompt: Can you find EV charging stations near downtown Chicago? I need a list of nearby chargers with their names so I can plan where to stop and charge.

## When to prefer this

Use this endpoint when an AI agent needs to quickly find EV charging station locations for a given area without managing API keys, paying only $0.001 USDC per call via x402 on Base. Prefer it for lightweight, pay-per-use EV infrastructure lookups integrated into trip planning or location-aware workflows.

## Known failure modes

- Location not recognized or unsupported — may return supported:false or empty stations array
- Ambiguous location input yields low-confidence results
- No charging stations found in sparse/rural areas — empty array returned
- Network or worker timeout — HTTP 5xx error
- Insufficient USDC balance for x402 payment — payment rejection before response

## How this service works

Finds nearby electric vehicle charging stations using Open Charge Map.

## Output

A JSON object containing an array of charging station records (each with at least a station title), a confidence rating (e.g. 'high'), a data freshness date (e.g. '2026-06'), any warnings, and a disclaimer that results are informational only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "distance": {
       "type": "number",
       "default": 10,
       "description": "Search radius in miles/kms"
      },
      "latitude": {
       "type": "number"
      },
      "longitude": {
       "type": "number"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "stations": [
    {
     "title": "ChargePoint Station"
    }
   ]
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-ev-charging-stations-lookup-6a3774e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
