KV ManagementList KV entries
KV Management

List KV entries

Retrieve a paginated list of key-value entries. Supports prefix filtering for scoped lookups.

curl -X GET "https://api.mythic-analytics.com/api/v1/admin/kv?prefix=example_string&limit=42&cursor=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": [
    {
      "key": "client:acme-retail:config",
      "value": {},
      "metadata": {},
      "expiration": "2024-12-25T10:00:00Z",
      "created_at": "2024-03-21T18:42:15.291Z",
      "updated_at": "2024-06-15T10:00:00.000Z"
    }
  ],
  "count": 50,
  "cursor": "example_string"
}
GET
/admin/kv
GET
Security Scheme
Bearer Tokenstring
Required

Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY

Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY
query
prefixstring

Filter keys by prefix (e.g., client:acme-retail:).

query
limitinteger

Maximum results per page. Default 100, max 1000.

Max: 1000
query
cursorstring

Pagination cursor from a previous response.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY

Query Parameters

prefixstring

Filter keys by prefix (e.g., client:acme-retail:).

limitinteger

Maximum results per page. Default 100, max 1000.

cursorstring

Pagination cursor from a previous response.

Responses

successboolean
dataarray
countinteger
cursorstring

Pagination cursor for the next page. Null if no more results.