API Reference / Git - Commits

Export commit changelog as ZIP

get https://api.intelig.ai/api/v1/intelig/commits/{id}/export/changelog.zip

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

Download a ZIP file containing commit metadata and all file patches. The ZIP includes a JSON manifest and individual patch files for each changed file. Streams the response for large changelogs.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/commits/1/export/changelog.zip" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
id integer (int64) yes Commit ID

Response 200

application/json · StreamingResponseBody

No body.

Status codes

  • 200 — ZIP file streamed successfully
  • 401 — Unauthorized - invalid or missing JWT token
  • 404 — Commit not found
  • 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.