Skip to main content
GET
/
v2
/
auth
/
api-keys
List API keys
curl --request GET \
  --url https://api.example.com/v2/auth/api-keys/ \
  --header 'Authorization: Bearer <token>'
{
  "apiKeys": [
    {
      "createdAt": "<string>",
      "encryptionType": "<string>",
      "fingerPrint": "<string>",
      "id": "<string>",
      "name": "<string>",
      "updatedAt": "<string>",
      "whitelistedIPs": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

OK

apiKeys
object[]