Context

Get context entry by ID

Returns a specific context entry by ID for the authenticated organization. Supports both API key authentication (X-API-Key header) and session authentication (Bearer token or cookies).

get/v1/context/{id}

Path parameters

idstring required
Example:ctx_abc123def456

Context entry ID

Response

Context entry retrieved successfully

idstring
organizationIdstring
questionstring
answerstring
tagsstring[]
createdAtstring date-time
updatedAtstring date-time
authType'api-key' | 'session'

Example response

{
  "id": "ctx_abc123def456",
  "organizationId": "org_xyz789uvw012",
  "tags": [
    "authentication",
    "security"
  ]
}

Changes