Note: HERE Network Positioning API v1 is in maintenance and is not actively developed. Use HERE Network Positioning API v2 to get the latest features and updates. To learn more, see the HERE Network Positioning API v2 Developer Guide.

A typical request to the Network Positioning API v1 includes the basic elements shown in the following table and, in addition, it may contain resource-specific parameters or data.

Here is an example of locate request, which uses API Key authentication:
POST https://pos.ls.hereapi.com/positioning/v1/locate?apiKey={YOUR_API_KEY}
Make sure to include request content type in the HTTP headers:
Content-Type: application/json
The POST body is as follows
{
  "wlan": [{
    "mac": "36:68:95:1A:36:93",
    "powrx": -74
  }, {
    "mac": "18:64:72:B7:BC:B2",
    "powrx": -75
  },{
    "mac": "18:64:72:B7:89:21",
    "powrx": -76
  },{
    "mac": "18:64:72:B7:BC:B1",
    "powrx": -77
  },{
    "mac": "18:64:72:B7:B1:63",
    "powrx": -79
  }]
}
Note: This example uses a HERE API Key to authenticate your request. For the available authentication options, see the Identity & Access Management Developer Guide.