API Reference / Strategy - Roadmaps

Get all roadmaps

get https://api.intelig.ai/api/v1/intelig/strategy/roadmaps

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getRoadmaps

Returns all roadmaps for the organization with optional filtering by year or scope

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Query parameters

NameTypeRequiredDescription
year integer (int32) no
scopeType string no
scopeId integer (int64) no

Response 200

application/json · ApiResponseListRoadmapResponse

FieldTypeDescription
success boolean
message string
data RoadmapResponse[]

Status codes

  • 200 — List of roadmaps returned successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 429 — —

Every response is wrapped in { success, message, data }. A 4xx means the request is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.