POST /geolocation/v1/geolocate

Geolocation API returns a location and accuracy radius based on information about cell towers and WiFi nodes that the mobile client can detect. This document describes the protocol used to send this data to the server and to return a response to the client.

Communication is done over HTTPS using POST. Both request and response are formatted as JSON, and the content type of both is application/json.

You must specify a key in your request, included as the value of akey parameter. A key is your application's API key. This key identifies your application for purposes of quota management. Learn how to get a key.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
wifiAccessPoints[] Array No
wifiAccessPoints[].signalStrength Number No
wifiAccessPoints[].signalToNoiseRatio Number No
wifiAccessPoints[].macAddress String No
considerIp String No

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.