BillKit/Docs Console
Tenant

Get tenant capabilities

Read which payment methods and currencies your account can actually use.

GET/v1/tenant/capabilities
Operation get_tenant_capabilities · Scope tenant:read · Spec snapshot 2026-09-13

Parameters

This endpoint takes no parameters.

Returns

Returns a TenantCapabilitiesResponse object.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the tenant:read scope.
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/tenant/capabilities \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "allowed_currencies": [
    "string"
  ],
  "enabled_currencies": [
    "string"
  ],
  "enabled_methods": [
    "string"
  ],
  "livemode": false,
  "mollie_connected": false,
  "object": "tenant_capabilities",
  "provider_capabilities_refreshed_at": 1789392000,
  "provider_currencies_verified": false,
  "tenant_id": "tenant_9XKp2vQ1"
}