Register BLE tracking tags, receive position updates via a simple API, and forward them to your own systems using webhooks or RabbitMQ.
Enter your tag ID to link it to your account. Your tag starts reporting its position straight away.
Query your tag's latest position anytime via the REST API using an API key you generate in your account.
Get positions pushed to your own systems in real time via a webhook or a RabbitMQ exchange.
Create an account
Register with your email and password to access the dashboard.
Register your tags
Add your pre-configured Tagora tags to your account by entering their tag ID.
Receive positions
Your tags report positions automatically. Query them via the REST API or get them pushed via webhook or RabbitMQ.
Authenticate with an API key and query your tag positions from any client.
Headers
| Authorization | Bearer tgr_<your-key> |
Query params
| tag_id | Filter by tag ID |
| since | ISO 8601 timestamp — only return positions after this time |
| limit | Number 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"
}
]curl "https://tagora.uk/api/v1/positions?tag_id=ABC123&limit=10" \ -H "Authorization: Bearer tgr_<your-key>"