POST
/
experimental
/
geography
/
reachability
/
_compute
curl --request POST \
  --url https://api.f6o.co/experimental/geography/reachability/_compute \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "point": {
    "lat": 123,
    "lon": 123
  },
  "costValue": 123,
  "costType": "UNKNOWN_COST_TYPE",
  "profileType": "UNKNOWN_PROFILE_TYPE",
  "directionType": "UNKNOWN_DIRECTION_TYPE",
  "constraints": [
    "UNKNOWN_CONSTRAINT"
  ]
}'
{
  "apiVersion": "<string>",
  "kind": "<string>",
  "item": {
    "basedOn": "2023-11-07T05:31:56Z",
    "geoShape": {
      "type": "UNKNOWN_GEO_SHAPE_TYPE",
      "shape": [
        {
          "coordinates": [
            {
              "lat": 123,
              "lon": 123
            }
          ]
        }
      ]
    }
  },
  "internalDelay": 123
}

Authorizations

x-api-key
string
header
required

API Key used to be authentified to these APIs. Please contact Fluximmo to get one

Body

application/json
point
object
costValue
number
costType
enum<string>
default:UNKNOWN_COST_TYPE
Available options:
UNKNOWN_COST_TYPE,
TIME_COST_TYPE,
DISTANCE_COST_TYPE
profileType
enum<string>
default:UNKNOWN_PROFILE_TYPE
Available options:
UNKNOWN_PROFILE_TYPE,
CAR_PROFILE_TYPE,
PEDESTRIAN_PROFILE_TYPE
directionType
enum<string>
default:UNKNOWN_DIRECTION_TYPE
Available options:
UNKNOWN_DIRECTION_TYPE,
ARRIVAL_DIRECTION_TYPE,
DEPARTURE_DIRECTION_TYPE
constraints
enum<string>[]
Available options:
UNKNOWN_CONSTRAINT,
AVOID_TOLLS_CONSTRAINT,
AVOID_TUNNELS_CONSTRAINT,
AVOID_BRIDGES_CONSTRAINT

Response

200
application/json
A successful response.
apiVersion
string
kind
string
item
object
internalDelay
integer

Was this page helpful?