Calculate a route between two points. Pass coordinates as "latitude,longitude" strings.
curl --request POST \
--url https://staging.api.fryte.xyz/routing/route \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"departure": "48.7758,9.1829",
"destination": "52.5200,13.4050"
}
'{
"route_data": {}
}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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Route geometry, distance, and duration.
curl --request POST \
--url https://staging.api.fryte.xyz/routing/route \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"departure": "48.7758,9.1829",
"destination": "52.5200,13.4050"
}
'{
"route_data": {}
}