cURL
curl --request GET \ --url https://crossproductroadmapbackend.vercel.app/api/v1/stats \ --header 'Authorization: Bearer <token>' \ --header 'x-tenant-slug: <x-tenant-slug>'
{ "total": 123, "byStatus": [ { "id": "<string>", "name": "<string>", "color": "<string>", "count": 123, "percentage": 123 } ], "byProduct": [ { "id": "<string>", "name": "<string>", "count": 123, "subProducts": [ { "id": "<string>", "name": "<string>", "count": 123 } ] } ] }
Generate an API key in your workspace Settings → API Keys. Pass it as Authorization: Bearer tab_<key> on every request.
Authorization: Bearer tab_<key>
Your workspace slug (e.g. acme).
acme
Filter to a specific quarter key (e.g. 2026_Q1)
2026_Q1
OK
Show child attributes