API Reference / Strategy - Initiative Intent Snapshots

Snapshot active at a given instant (defaults to now)

get https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{initiativeId}/intent-snapshots/at

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

The single snapshot that was current at `asOf`. Use it to reproduce a past attribution decision: pass the commit's timestamp and you get the intent the matcher was actually working from. Omit `asOf` for the current snapshot. 404 when the initiative had no intent recorded at that moment.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/intent-snapshots/at" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
initiativeId integer (int64) yes

Query parameters

NameTypeRequiredDescription
asOf string no ISO-8601 instant; omitted = now

Response 200

application/json · ApiResponseInitiativeIntentSnapshotDto

FieldTypeDescription
success boolean
message string
data InitiativeIntentSnapshotDto

Status codes

  • 200 — OK
  • 401 — —
  • 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.