curl --request GET \
--url https://api.example.com/v1/geo/destination \
--header 'X-API-Key: <api-key>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Calculate destination point given start, bearing, and distance.
curl --request GET \
--url https://api.example.com/v1/geo/destination \
--header 'X-API-Key: <api-key>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Starting latitude
-90 <= x <= 90Starting longitude
-180 <= x <= 180Bearing in degrees
x >= 0Distance to travel
Unit: km or mi
Successful Response