GET/api/v1/geocodeSupabase JWT

Geocode an address

Resolves a free-form US address to lat/lng using the Census batch geocoder. Authenticated with a Supabase JWT — billing-exempt, does not count against the monthly call cap. Used by the in-product search to chain into /area.

Parameters

NameInTypeDescription
addressrequiredquerystringAny US street address.

Request

Example response

{
  "data": {
    "lat": 30.5234,
    "lng": -91.1872,
    "formatted": "4045 Scenic Hwy, Baton Rouge, LA 70805"
  },
  "meta": {
    "request_id": "req_8aZpmK4qX0nT",
    "timestamp": "2026-05-20T14:22:08Z",
    "response_time_ms": 12
  }
}