Skip to main content
GET
/
routing
/
geocode
Geocode address
curl --request GET \
  --url https://staging.api.fryte.xyz/routing/geocode \
  --header 'Authorization: Bearer <token>'
{
  "latitude": 48.7758,
  "longitude": 9.1829
}

Documentation Index

Fetch the complete documentation index at: https://docs.fryte.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

address
string
required

Street address to geocode.

Response

Successful Response

latitude
number
required

Latitude of the geocoded address.

longitude
number
required

Longitude of the geocoded address.