Skip to main content
GET
/
api
/
canary
/
authentication
/
api-key
/
list
List API Keys
curl --request GET \
  --url https://api.cashful.africa/api/canary/authentication/api-key/list \
  --header 'Authorization: Bearer <token>'
{
  "apiKeys": [
    {
      "id": "key_123",
      "name": "My API Key"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

API keys listed successfully

apiKeys
object[]
required

List of API keys

Example:
[{ "id": "key_123", "name": "My API Key" }]