GET
/
reserve
curl --request GET \
  --url https://api.treasuryprime.com/reserve \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "account_id": "acct_1234567890",
      "amount": "0.00",
      "id": "reserve_1029384756",
      "reserve_account_id": "acct_0987654321",
      "upper_limit": "100.00",
      "userdata": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
A list of reserve elements

The response is of type any.