UnifyAPI
← Back to catalog

nrel.afdc_stations_search

mock data$0.002 / call

NREL AFDC Alt-Fuel Stations Search

Search US alt-fuel stations by ZIP, state, or city. Filterable by fuel type, EV network, connector type, and access level. Use for state-level analytics or city-wide EV infrastructure surveys; use afdc_stations_nearest for proximity search to a coordinate.

Science & Researchprovider: Nrel#nrel#science

Input schema

zip

5-digit US ZIP code to search within. Example: '94102'.

string
city

City name. Use with state for disambiguation. Example: Oakland.

string
limit

Results per page (1-200). Default 50.

integer
state

2-letter US state code. Example: 'CA', 'TX', 'NY'.

string
access

Filter by access type: 'public' for open-access stations, 'private' for fleet-only.

string
offset

Pagination offset — number of results to skip. Default 0.

integer
status

Station status: E=available (open), P=planned (future), T=temporarily unavailable. Default E.

string
fuel_type

Comma-separated fuel codes: ELEC (electric), CNG, LNG, LPG (propane), BD (biodiesel), E85, HY (hydrogen). Default ELEC.

string
ev_connector_type

EV connector codes (comma-separated): J1772 (Level 2), J1772COMBO (CCS), CHADEMO, TESLA, NEMA1450, NEMA515.

string

Call via REST

curl -X POST https://unifyapi.pro/api/call/nrel.afdc_stations_search \
  -H "Authorization: Bearer uak_live_..." \
  -H "Content-Type: application/json" \
  -d '{"zip":"<zip>","city":"<city>","limit":50,"state":"<state>","access":"<access>","offset":0,"status":"E","fuel_type":"ELEC","ev_connector_type":"<ev_connector_type>"}'

Try it

Paste a UnifyAPI key (create one in the dashboard) and run a real call.