Account transactions

GET /users/{user_id}/custody_account_holders/{custody_account_holder_id}/custody_accounts/{custody_account_id}/transactions

Account transactions

Path parameters

  • user_id string Required

    User id

  • custody_account_holder_id string Required

    Custody account holder id

  • custody_account_id string Required

    Custody account id

Query parameters

  • limit number Required

    Number of transactions to return.

  • order string

    Order of transactions by timestamp (asc or desc).

  • offset string

    Offset by which to fetch transactions from.

  • cursor number

    Transaction cursor to start fetching from.

Responses

  • 200

    Returns a list of account transactions.

    Hide response attributes Show response attributes array[object]
    • id string
    • amount number
    • from_address string
    • destination_address string
    • reference string
    • asset_code string
    • asset_issuer string
    • tx_hash string
    • confirmed_at string(datetime)
    • failed_at string(datetime)
    • created_at string(datetime)
    • status string
    • cursor integer
GET /users/{user_id}/custody_account_holders/{custody_account_holder_id}/custody_accounts/{custody_account_id}/transactions
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/custody_account_holders/{custody_account_holder_id}/custody_accounts/{custody_account_id}/transactions?limit=42.0
Response examples (200)
[
  {
    "id": "string",
    "amount": 42.0,
    "from_address": "string",
    "destination_address": "string",
    "reference": "string",
    "asset_code": "string",
    "asset_issuer": "string",
    "tx_hash": "string",
    "confirmed_at": "string",
    "failed_at": "string",
    "created_at": "string",
    "status": "string",
    "cursor": 42
  }
]
Response examples (200)
[
  {
    "id": "string",
    "amount": 42.0,
    "from_address": "string",
    "destination_address": "string",
    "reference": "string",
    "asset_code": "string",
    "asset_issuer": "string",
    "tx_hash": "string",
    "confirmed_at": "string",
    "failed_at": "string",
    "created_at": "string",
    "status": "string",
    "cursor": 42
  }
]