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

Create transfer

POST
https://api.bucksbus.com/int/transfer

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

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠422Unprocessible Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.bucksbus.com/int/transfer' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "to_store_id": "14f71a20-547e-484d-91a2-c85697a86574",
    "amount": 0,
    "asset_id": "string",
    "description": "string"
}'
Response Response Example
200 - Example 1
{}
Previous
Release dedicated address
Next
Create withdrawal
Built with