---
title: "Get API token"
method: GET
path: "/api/v1/api-keys/{id}"
tags: ["API Tokens"]
---

# Get API token

`GET /api/v1/api-keys/{id}`

Returns a single API token by id. Requires organization admin permissions.

## Path parameters

- `id` string, uuid, required — Token UUID

## Response `200`

The requested API token

- ApiKey
  - `createdAt` string, date-time, required — ISO 8601 timestamp of when the token was created
  - `enabled` boolean, required — Whether the token can currently authenticate. A disabled token cannot authenticate but remains visible until deleted.
  - `id` string, uuid, required — Unique identifier for the token
  - `membershipId` string, uuid, nullable, required — Membership ID of the user the token is scoped to. Null for organization-level tokens.
  - `name` string, required — Human-readable name for the token
  - `type` 'organization' | 'personal' | 'mcp', required — Token type: `organization` (org-level), `personal` (user-created personal access token), or `mcp` (MCP OAuth grant).

## Other responses

- `400` — Malformed `id` (must be a UUID)
- `401` — Authentication required
- `403` — Insufficient permissions
- `404` — Token not found in this organization

---

[API](https://skmtc.net/omniapp/apis/omni-api.md) · [All operations](https://skmtc.net/omniapp/apis/omni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/omniapp/omni-api/versions/de7cac8b5983/schema)
