List hotspots
curl --request GET \
--url https://linkrmap.com/api/v1/hotspots \
--header 'x-api-key: <api-key>'import requests
url = "https://linkrmap.com/api/v1/hotspots"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://linkrmap.com/api/v1/hotspots', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://linkrmap.com/api/v1/hotspots",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://linkrmap.com/api/v1/hotspots"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://linkrmap.com/api/v1/hotspots")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://linkrmap.com/api/v1/hotspots")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1,
"name": "Tony's Deli & Grocery",
"lat": 40.7189,
"lng": -73.9847,
"mbps": 85,
"risk": "Low",
"owner": "@tony_deli",
"note": "Password on the counter next to the register.",
"signal": "Good",
"network": "WiFi 5",
"security": "WPA2",
"uptime": "96.8%",
"rating": "4.3/5",
"avatar": "#FF6B6B",
"lastUsed": "12 minutes ago",
"locationImage": "https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=800&q=80"
}
],
"meta": {
"total": 78,
"limit": 20,
"offset": 0,
"hasMore": true
}
}{
"error": "Unauthorized",
"message": "Invalid or missing API key. Include x-api-key header with a valid key (linkr_test_* or linkr_live_*)."
}API Reference
List hotspots
Returns a paginated list of hotspots from the NYC beta dataset.
GET
/
api
/
v1
/
hotspots
List hotspots
curl --request GET \
--url https://linkrmap.com/api/v1/hotspots \
--header 'x-api-key: <api-key>'import requests
url = "https://linkrmap.com/api/v1/hotspots"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://linkrmap.com/api/v1/hotspots', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://linkrmap.com/api/v1/hotspots",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://linkrmap.com/api/v1/hotspots"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://linkrmap.com/api/v1/hotspots")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://linkrmap.com/api/v1/hotspots")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": 1,
"name": "Tony's Deli & Grocery",
"lat": 40.7189,
"lng": -73.9847,
"mbps": 85,
"risk": "Low",
"owner": "@tony_deli",
"note": "Password on the counter next to the register.",
"signal": "Good",
"network": "WiFi 5",
"security": "WPA2",
"uptime": "96.8%",
"rating": "4.3/5",
"avatar": "#FF6B6B",
"lastUsed": "12 minutes ago",
"locationImage": "https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=800&q=80"
}
],
"meta": {
"total": 78,
"limit": 20,
"offset": 0,
"hasMore": true
}
}{
"error": "Unauthorized",
"message": "Invalid or missing API key. Include x-api-key header with a valid key (linkr_test_* or linkr_live_*)."
}Authorizations
Value must match linkr_(test|live)_[a-zA-Z0-9]{6,}. This is a shape check, not an issued credential.
Query Parameters
Number of results per page. Clamped to 1..100.
Required range:
1 <= x <= 100Number of results to skip. Minimum 0.
Required range:
x >= 0Filter by risk level (case-insensitive exact match).
Available options:
Low, Medium, High Filter by network type (case-insensitive exact match). Values contain a space — URL-encode it, e.g. WiFi%206.
Available options:
WiFi 5, WiFi 6, WiFi 6E Case-insensitive substring match across name, owner, and note only.