BuckBus
API
API
  1. Accounts
  • API Introduction
    • Introduction
    • References
    • Test store
    • Authorization
    • Processing of requests
    • Webhooks
  • APIs
    • Assets
      • List assets
    • Accounts
      • List accounts
        GET
    • Payments
      • Create payment
      • Create fiat payment
      • List payments
      • Payment details
      • List payment transactions
    • Dedicated addresses
      • Create dedicated address
      • Release dedicated address
    • Transfers
      • Create transfer
    • Withdrawals
      • Create withdrawal
      • Withdrawal details
    • Convert
      • Convert amount
  • Schemas
    • Payment
    • PaymentTransaction
    • Lang
    • Withdrawal
    • DedicatedAddress
    • Providers
    • Asset
    • Account
    • Accounts
API
API
  1. Accounts

List accounts

GET
https://api.bucksbus.com/int/accounts

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Header Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.bucksbus.com/int/accounts' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json'
Response Response Example
{
    "asset_id": "string",
    "balance": "string",
    "available": "string",
    "on_hold": "string",
    "accounts": [
        {
            "account_id": "string",
            "store_id": "string",
            "account_num": 0,
            "crypto_network": "string",
            "asset_id": "string",
            "balance": "string",
            "available": "string",
            "on_hold": "string",
            "currency": "string",
            "base_asset_id": "string",
            "base_balance": "string",
            "base_available": "string",
            "base_on_hold": "string",
            "base_currency": "string",
            "rate": 0,
            "rate_date": "2019-08-24T14:15:22Z"
        }
    ]
}
Previous
List assets
Next
Create payment
Built with