Skip to main content
The Linkr API is a small, read-only REST API. It serves the same 78-hotspot New York City dataset that powers the public map at linkrmap.com/demo.
This API serves the NYC preview dataset and is read-only. Hotspots created in the invitation-only beta app are not exposed through it. There are no write, update, or delete operations.

Base URL

Endpoints

All three are GET. All three require an API key header.

Quick start

The dataset

The current dataset is 78 hotspots, all in New York City. It is static — the same records every time — so it is well suited to demos, prototypes, and integration tests. See the hotspot schema for the full shape of a record.

CORS

The API is browser-accessible from any origin:
  • Access-Control-Allow-Origin: *
  • Access-Control-Allow-Headers: x-api-key, content-type
  • Access-Control-Allow-Methods: GET, OPTIONS
  • Preflight OPTIONS requests return 204.

Errors