Skip to main content
GET
/
api
/
v1
/
api-keys
{
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "key": "<string>",
      "hashed_secret": "<string>",
      "label": "<string>",
      "status": "active",
      "last_used_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "permissions": [
        "<string>"
      ],
      "ip_whitelist": [
        "<string>"
      ],
      "collections": [
        "<string>"
      ],
      "workspace_id": "<string>",
      "created_by": "<string>",
      "secret": "<string>"
    }
  ],
  "total_count": 123,
  "page": 123,
  "limit": 123,
  "next_page": 123,
  "next_cursor": "<string>",
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Workspace-Id
string | null

The workspace ID

Query Parameters

skip
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

Successful Response

data
ApiKeyRead · object[]
required
total_count
integer
required
page
integer | null
limit
integer | null
next_page
integer | null
next_cursor
string | null
has_more
boolean | null