Calculate a route between two points
POST/api/v1/route
Calculate a route between two points
curl https://plaza.fyi/api/v1/route \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $PLAZA_API_KEY" \
-d '{
"destination": {
"coordinates": [
0
],
"type": "Point"
},
"origin": {
"coordinates": [
0
],
"type": "Point"
}
}'