Track your tags,
your way.

Register BLE tracking tags, receive position updates via a simple API, and forward them to your own systems using webhooks or RabbitMQ.

Link your tag

Enter your tag ID to link it to your account. Your tag starts reporting its position straight away.

🔑

Receive positions

Query your tag's latest position anytime via the REST API using an API key you generate in your account.

Forward anywhere

Get positions pushed to your own systems in real time via a webhook or a RabbitMQ exchange.

How it works

1

Create an account

Register with your email and password to access the dashboard.

2

Register your tags

Add your pre-configured Tagora tags to your account by entering their tag ID.

3

Receive positions

Your tags report positions automatically. Query them via the REST API or get them pushed via webhook or RabbitMQ.

REST API

Authenticate with an API key and query your tag positions from any client.

GET/api/v1/positions

Headers

AuthorizationBearer tgr_<your-key>

Query params

tag_idFilter by tag ID
sinceISO 8601 timestamp — only return positions after this time
limitNumber of results (default 100, max 1000)

Response

[
  {
    "id": "...",
    "tag_id": "ABC123",
    "lat": 51.5074,
    "lon": -0.1278,
    "power": 3.68,
    "battery_level": 82,
    "source": "apple",
    "ingested_at": "2026-04-21T12:00:00Z",
    "timestamp": "2026-04-21T11:59:55Z"
  }
]
Example
curl "https://tagora.uk/api/v1/positions?tag_id=ABC123&limit=10" \
  -H "Authorization: Bearer tgr_<your-key>"