Skip to main content
GET
/
api-keys
List all active API keys.
curl --request GET \
  --url https://api.sandbox.goteal.co/api-keys \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Backend service key",
    "created_at": "2019-05-17T00:00:00.000Z",
    "secret": null
  }
]

Authorizations

X-API-KEY
string
header
required

Response

OK

id
string<uuid>
required

Unique identifier for the API key

Example:

"550e8400-e29b-41d4-a716-446655440000"

name
string
required

Human-readable name for the API key

Example:

"Backend service key"

created_at
string<date-time>
required

When the API key was created

Example:

"2019-05-17T00:00:00.000Z"

secret
string | null

The API key secret. Only returned when creating a key, null for list operations.

Example:

null