Skip to main content
GET
/
api
/
locations
/
geocode
Geocode a location string into structured location data
curl --request GET \
  --url https://connect.jobo.world/api/locations/geocode \
  --header 'X-Api-Key: <api-key>'
{
  "input": "<string>",
  "succeeded": true,
  "locations": [
    {
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "display_name": "<string>",
      "country_code": "<string>",
      "latitude": 123,
      "longitude": 123,
      "fuzzy_confidence": 123
    }
  ],
  "error": "<string>"
}

Authorizations

X-Api-Key
string
header
required

API key provided by Jobo

Query Parameters

location
string
required

Location string to geocode (e.g. "San Francisco, CA")

Response

Geocode result

input
string
succeeded
boolean
locations
object[]
method
enum<string> | null

Which pipeline path produced the result. Omitted on early-exit failures (empty input, placeholder).

Available options:
cache,
remote_keyword,
llm,
no_match,
null
error
string | null