REST API · JSON

Developer API

Integrate TrackerVerse tracker data into your apps. Tracker status, uptime, reviews, open signups and more — all via a simple REST API.

JSON responses CORS enabled Free tier API key auth

Sign in to manage API keys

Create a free account to get started.

Sign in

API Endpoints

GET /api/v1/trackers

List all trackers with pagination, filtering, and sorting.

GET /api/v1/trackers/{slug}

Get a single tracker by slug or ID with full details.

GET /api/v1/rankings

Top trackers by rank score (sorted descending).

GET /api/v1/categories

List all tracker categories.

GET /api/v1/signups

List currently open signup windows.

Example Response

GET /api/v1/trackers/passthepopcorn 200 OK
{
  "data": {
    "id": "abc-123",
    "name": "PassThePopcorn",
    "slug": "passthepopcorn",
    "status": "online",
    "is_verified": true,
    "rating_avg": 4.7,
    "rating_count": 1283,
    "uptime_pct_30d": 99.9,
    "torrent_count": 400000,
    "category": { "name": "Movies", "slug": "movies" },
    "url_canonical": "https://bttrackers.com/trackers/passthepopcorn"
  }
}

Authentication

Pass your API key as a Bearer token in the Authorization header:

curl -H "Authorization: Bearer tvk_..." \
     https://bttrackers.com/api/v1/trackers