Skip to main content
GET
/
v1
/
api-keys
/
scopes
Get available API scopes
curl --request GET \
  --url https://api.example.com/v1/api-keys/scopes \
  --header 'Authorization: Bearer <token>'
{
  "scopes": [
    "read:payouts",
    "create:payouts",
    "read:beneficiaries",
    "create:beneficiaries"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.zuba.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Response

200 - application/json

List of available scopes

scopes
string[]
required

List of available API scopes/permissions

Example:
[
"read:payouts",
"create:payouts",
"read:beneficiaries",
"create:beneficiaries"
]