Skip to main content
GET
/
v1
/
me
/
api-keys
List API keys
curl --request GET \
  --url https://api.chatgrid.ai/v1/v1/me/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "ee112233-4455-6677-8899-aabbccddeeff",
      "key_prefix": "cgk_live_a1b2",
      "name": "Production key",
      "scopes": [
        "read",
        "write"
      ],
      "rate_limit": 120,
      "last_used_at": "2026-03-15T12:00:00.000Z",
      "created_at": "2026-03-10T09:00:00.000Z",
      "expires_at": null
    }
  ],
  "has_more": false,
  "cursor": null
}

Authorizations

Authorization
string
header
required

Pass your API key (prefixed cgk_) or a Supabase JWT in the Authorization: Bearer <token> header.

Response

List of API keys.

object
enum<string>
Available options:
list
data
object[]
has_more
boolean
Example:

false

cursor
string | null
Example:

null