# StatePulse EV Charger Locator

> StatePulse EV Charger Locator is a paid API for AI agents from statepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Finds nearby EV charging stations given a location, returning charger details including connector types, distance, and availability confidence.

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/transit/ev-charger
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statepulse-ev-charger-locator-7d975d01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PXhknKJOg8fd0k_NXnUA9

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 statepulse-ev-charger-locator-7d975d01 -d '<json body>'
```

Example prompt: Find me EV charging stations near downtown Los Angeles (34.052, -118.243) — I need to know which ones support CCS or Type 2 connectors and how far they are from me.

## When to prefer this

Choose this endpoint when an agent needs to locate EV charging infrastructure near a specific geographic coordinate, especially when connector type compatibility matters. Useful for route planning, travel assistance, or EV fleet management scenarios where real-time or near-real-time charger availability data is needed without requiring an API key.

## Known failure modes

- No chargers found in the specified area — empty chargers array returned
- Invalid or missing coordinates cause a request error
- Location outside supported coverage area returns supported:false
- Low confidence result when data freshness is uncertain
- Payment failure via x402/USDC prevents endpoint access

## How this service works

Locates public electric vehicle charging stations within a given radius using Open Charge Map.

## Output

Returns a list of nearby EV chargers with each charger's name, GPS coordinates (lat/lng), supported connector types (e.g. Type 2, CCS), and distance in miles, along with a 'supported' flag and a confidence rating (e.g. 'high') for the result quality.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "chargers": [
    {
     "lat": 34.052,
     "lng": -118.243,
     "name": "City Hall Parking",
     "connections": [
      "Type 2",
      "CCS"
     ],
     "distance_miles": 0.3
    }
   ]
  },
  "supported": true,
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statepulse-ev-charger-locator-7d975d01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from statepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/statepulse-api.hahavoid0.workers.dev/llms.txt)
