Skip to main content
GET
/
api-keys
List API keys
curl --request GET \
  --url https://ascii.dev/api/box/v1/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "type": "api_key.list",
  "apiKeys": [
    {
      "id": "sak_123",
      "name": "Production worker",
      "keyPrefix": "box_live",
      "keyLastFour": "9abc",
      "createdAt": "2026-05-31T12:00:00Z",
      "lastUsedAt": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Box API key in the form box_.... Create and rotate keys in the Box dashboard or through the v1 API key endpoints.

Response

API key metadata.

ok
boolean
required
Example:

true

type
string
required

Stable success envelope discriminator added by v1.

apiKeys
object[]
required
apiKey
object
secret
string

One-time raw API key secret. Store immediately; it is never returned again.