---
title: "List keys"
method: GET
path: "/storage/kvs/{id}/keys"
tags: ["kv keys"]
---

# List keys

`GET /storage/kvs/{id}/keys`

Lists the keys in a namespace. Returns key names and metadata only, never values. Results are paginated with `limit` and an opaque `cursor`.

## Path parameters

- `id` string, uuid, required

## Query parameters

- `prefix` string
- `limit` integer
- `cursor` string

## Response `200`

Keys retrieved successfully

- KvKeyListResponseWrapper
  - `record_type` string
  - `data` KvKey[]
    - `key` string
    - `size_bytes` integer — Size of the stored value in bytes.
    - `updated_at` string, date-time
  - `meta` KvListMeta
    - `has_more` boolean — Whether more results are available on a following page.
    - `cursor` string — Opaque cursor for the next page; pass it back as the `cursor` query parameter. Omitted when there are no further results.

## Other responses

- `400` — Bad request — `id` is not a valid UUID, or `limit` is not a positive integer
- `401` — Unauthorized
- `404` — KV namespace not found
- `409` — Conflict — the namespace is not ready (`status` is not `provision_ok`)
- `500` — Internal server error

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/revisions/8f5f4e537994/schema)
