Find an API

Search public APIs with auth details & Postman guides

← All APIs

HERE Network Positioning API v2

here · Location

Location No Auth Free & Open location

Positioning API accepts requests with radio network measurements and replies with corresponding location estimate. For more details and examples, see [Developer's Guide](https://developer.here.com/documentation/positioning). Cellular measurements are given in terms defined in 3GPP and 3GGP2 specifications, see the corresponsing documentation at http://www.3gpp.org. Breaking changes from v1: - JSON fields `altaccuracy`, `baselat`, `baselng`, `cellparams`, `pilotpower`, `pnoffset`, `powrx`,

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Service health

Tests basic health of the service

https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/health";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET API version

Retrieves API Specification version information

https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/version";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Location query

Request WGS-84 compliant geocoordinates for a location based on 2G/3G/4G cell and/or WLAN measurements.

https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate?desired=example&fallback=example&required=example&confidence=68

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate?desired=example&fallback=example&required=example&confidence=68"
import requests
params = {
    "desired": "example",
    "fallback": "example",
    "required": "example",
    "confidence": "68"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate');
url.searchParams.set('desired', 'example');
url.searchParams.set('fallback', 'example');
url.searchParams.set('required', 'example');
url.searchParams.set('confidence', '68');

const response = await fetch(url, {
  method: 'POST',
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate")
	q := baseURL.Query()
	q.Set("desired", "example")
	q.Set("fallback", "example")
	q.Set("required", "example")
	q.Set("confidence", "68")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate")
uri.query = URI.encode_www_form({
  "desired" => "example",
  "fallback" => "example",
  "required" => "example",
  "confidence" => "68"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/here.com/positioning/2.1.1/locate?" . http_build_query([
    "desired" => "example",
    "fallback" => "example",
    "required" => "example",
    "confidence" => "68"
]);
$opts = ["http" => [
    "method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with HERE Network Positioning API v2?

HERE Network Positioning API v2 is a Location API. Developers commonly use location APIs for:

  • tracking assets and vehicles in real time
  • building delivery and logistics apps
  • finding nearby businesses or services
  • geo-fencing and location-based notifications
  • address validation and autocomplete

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. HERE Network Positioning API v2 is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗