GET
/
transfer
/
limits
/
utilizations
List Transfer Limits
curl --request GET \
  --url https://api.paxos.com/v2/transfer/limits/utilizations \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "rule_id": "<string>",
      "transfer_types": [
        "INTERNAL_TRANSFER_DEBIT"
      ],
      "period_seconds": "<string>",
      "limit": "<string>",
      "remaining": "<string>",
      "limit_asset": "<string>"
    }
  ],
  "next_page_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

transfer_type
enum<string>
required

Type of transfer to fetch limits for.

Available options:
INTERNAL_TRANSFER_DEBIT,
INTERNAL_TRANSFER_CREDIT,
CRYPTO_DEPOSIT,
CRYPTO_WITHDRAWAL,
WIRE_DEPOSIT,
WIRE_WITHDRAWAL,
SEN_DEPOSIT,
SEN_WITHDRAWAL,
BANK_DEPOSIT,
BANK_WITHDRAWAL,
PAXOS_TRANSFER_DEBIT,
PAXOS_TRANSFER_CREDIT,
SIGNET_DEPOSIT,
SIGNET_WITHDRAWAL,
CBIT_WITHDRAWAL,
CBIT_DEPOSIT,
CUBIX_DEPOSIT,
CUBIX_WITHDRAWAL

Response

200 - application/json

A successful response.

The response is of type object.