GET
/api/v1/competitors
List tracked competitors
Every competitor this workspace actively monitors. Paused, removed, and pending links are left out. Not paginated.
Request
GET /api/v1/competitors
Authorization: Bearer dbk_…
Response
{
"data": [
{
"id": 42,
"name": "Acme Analytics",
"website_url": "https://acme.example",
"category": "Analytics",
"watch": "core",
"tracked_since": "2026-01-12T09:00:00Z",
"url": "https://debriefing.io/competitors/42"
},
{
"id": 57,
"name": "Northwind AI",
"website_url": "https://northwind.example",
"category": "AI",
"watch": "horizon",
"tracked_since": "2026-03-02T14:30:00Z",
"url": "https://debriefing.io/competitors/57"
}
]
}