cURL
curl --request GET \ --url https://crossproductroadmapbackend.vercel.app/api/v1/timeframes \ --header 'Authorization: Bearer <token>' \ --header 'x-tenant-slug: <x-tenant-slug>'
{ "timeframes": [ { "id": "<string>", "label": "2026", "year": "2026", "startDate": "2023-11-07T05:31:56Z", "endDate": "2023-11-07T05:31:56Z", "quarters": [ { "id": "<string>", "key": "2026_Q1", "label": "Q1", "fullLabel": "2026 Q1", "startDate": "2023-11-07T05:31:56Z", "endDate": "2023-11-07T05:31:56Z" } ] } ] }
Returns timeframes (years/sprints) and their periods (quarters/months). Use the period key value (e.g. 2026_Q1) as startQuarter/endQuarter when creating or filtering initiatives.
key
2026_Q1
startQuarter
endQuarter
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
OK
Show child attributes