Need help? Get answers from the docs with Omni's in-app AI! Log in to your Omni instance and open the Omni Agent in the sidebar.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/api-keys/{id} \
--header 'Authorization: Bearer <token>'{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "CI deployment key",
"type": "organization",
"enabled": true,
"createdAt": "2026-04-20T10:00:00.000Z",
"membershipId": null
}This endpoint requires Organization Admin permissions.
Retrieves an API token by ID. Secrets are never returned. Returns token metadata including id, name, type, enabled status, creation timestamp, and associated membership.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/api-keys/{id} \
--header 'Authorization: Bearer <token>'{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "CI deployment key",
"type": "organization",
"enabled": true,
"createdAt": "2026-04-20T10:00:00.000Z",
"membershipId": null
}Documentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
Token UUID. The token must exist in the authenticating user's organization.
Token found successfully.
The token's unique identifier.
The name given when the token was created. Not unique within an organization.
Token type:
organization - Organization API keypersonal - Personal Access Token (PAT)mcp - MCP OAuth PATorganization, personal, mcp Whether the token can currently authenticate. Organization API tokens can be disabled by Organization Amins; disabled tokens remain visible but cannot authenticate. Personal and MCP tokens are always true.
ISO 8601 timestamp of when the token was created (UTC).
The user membership the token is scoped to. null if type is organization.
Was this page helpful?