API Reference / Contributors

Get contributor details

get https://api.intelig.ai/api/v1/intelig/contributors/{id}

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

Returns a single contributor with position information

Example request

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

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Response 200

application/json · ApiResponseContributorDetailDto

FieldTypeDescription
success boolean
message string
data ContributorDetailDto Detailed contributor with position information

Status codes

  • 200 — Contributor details retrieved successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access code intelligence pillar
  • 404 — Contributor 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.