# Track endpoint

> POST /api/track — start tracking an account or video URL.

# Track endpoint

`POST https://reelsradar.io/api/track`

## Request

```json
{
  "url": "https://www.instagram.com/reel/XXXX/",
  "collection_id": null
}
```

## Response (video)

```json
{
  "success": true,
  "type": "video",
  "video": { "id": "...", "status": "pending" },
  "job_id": "...",
  "message": "Tracking started. Metrics will appear in a few minutes."
}
```

## Errors

- `400` — missing / invalid URL
- `401` — not signed in
- `403` — no plan access or video limit reached
