---
title: "List API keys"
method: GET
path: "/api_keys"
tags: ["API Keys"]
---

# List API keys

`GET /api_keys`

List and filter API keys.

## Query parameters

- `limit` integer
- `starting_after` string, uuid
- `start_date` string, date
- `end_date` string, date
- `permission` 'read' | 'modify' | 'write'
- `last_4_chars` string
- `disabled` boolean

## Response `200`

List of filtered API keys.

- ApiKeySearchResult
  - `records` ApiKeyDetails[]
    - `id` string, uuid, required — The ID of the API key.
    - `name` string, required — The name of the API key.
    - `email` string, required — The email linked to the API key.
    - `permission` 'read' | 'modify' | 'write', required — The permission of the API key.
    - `last_4_chars` string, required — The last 4 characters of the API key.
    - `expiration_date` string, required — The UTC timestamp when the API key will expire.
    - `created_at` string, date-time, required — The UTC timestamp when the API key was created.
    - `disabled_at` string, required — The UTC timestamp when the API key was disabled.

## Other responses

- `400` — Validation error.
- `401` — Unauthorized. API key is missing or invalid.
- `500` — Internal server error.

---

[API](https://skmtc.net/numeral/apis/payments.md) · [All operations](https://skmtc.net/numeral/apis/payments/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/numeral/payments/versions/220f101cc2ef/schema)
