---
title: "List API Keys"
method: GET
path: "/api-keys"
tags: ["Team Management"]
---

# List API Keys

`GET /api-keys`

Returns all API keys belonging to the authenticated team. Includes ID, name, and rate limit for each key.

## Query parameters

- `api_key_id` string

## Response `200`

List of API keys retrieved successfully

- union
  - object
    - `apiKeys` object[]
      - `id` string, uuid
      - `name` string
      - `rateLimit` integer, nullable — Rate limit in requests per second
      - `budgetCents` integer, nullable — Spending budget for the API key, in cents
      - `isOverBudget` boolean — Whether the API key is currently over its budget
  - object
    - `apiKey` object
      - `id` string, uuid
      - `name` string
      - `rateLimit` integer, nullable — Rate limit in requests per second
      - `budgetCents` integer, nullable — Spending budget for the API key, in cents
      - `isOverBudget` boolean — Whether the API key is currently over its budget
      - `teamId` string, uuid
      - `createdAt` string, date-time

## Other responses

- `400` — Bad request - invalid API key ID format
- `401` — Unauthorized - Invalid or missing service key
- `403` — Forbidden - insufficient permissions to access this API key
- `404` — Not found - API key or team not found

---

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