Skip to main content
GET
/
api-keys
List API keys
curl --request GET \
  --url https://slog.ai/api-keys \
  --header 'slog-api-key: <api-key>'
{
  "api_keys": [
    {
      "id": "apik_01jqapikey001",
      "name": "Default",
      "prefix": "sk_a1b2c3",
      "userId": "user_01jquser0001",
      "workspaceId": "ws_01jqws000001",
      "createdAt": "2026-05-01T10:00:00.000Z",
      "lastUsedAt": "2026-05-20T08:00:00.000Z",
      "expiresAt": null
    }
  ],
  "pagination": {
    "limit": 50,
    "nextCursor": null
  }
}

Authorizations

slog-api-key
string
header
required

API key obtained from the Slog dashboard or returned by the signup/invite-redeem flows. Pass as the slog-api-key header.

Query Parameters

limit
integer
default:50

Maximum number of results to return per page.

Required range: 1 <= x <= 250
cursor
string

Opaque cursor from the nextCursor field of a previous response. Pass this to fetch the next page.

Response

API key list.

api_keys
object[]
pagination
object