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.
description: Token id. Must be a valid UUID — malformed values return 400.
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 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 Admins can disable any token type; disabled tokens remain visible but cannot authenticate.
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?