List of deposits

GET /deposits

Path parameters

  • state string
  • page number

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • id string(uuid)
    • updated_at string(date)
    • xdr_sequence_number integer

      Sequence number of the Stellar transaction

    • payment_transaction_id string
    • destination_address string

      Public stellar address to send the asset to

    • amount number(float)

      Amount

    • purpose string

      User's reference code used to identify fiat payment

    • state text

      Current state of the deposit.

    • xdr text

      XDR (External Data Representation) for related Stellar transaction

    • created_at string(date)
  • 401

    Unauthorized

GET /deposits
curl \
 -X GET https://stablecoin-bankhaus.bitbond.biz/api/v1/deposits
Response examples (200)
{
  "id": "string",
  "xdr_sequence_number": 42,
  "payment_transaction_id": "string",
  "destination_address": "string",
  "amount": 42.0,
  "purpose": "string",
  "state": "string",
  "xdr": "string",
  "created_at": "2023-05-04",
  "updated_at": "2023-05-04"
}
Response examples (200)
{
  "id": "string",
  "updated_at": "2025-05-04",
  "xdr_sequence_number": 42,
  "payment_transaction_id": "string",
  "destination_address": "string",
  "amount": 42.0,
  "purpose": "string",
  "state": "string",
  "xdr": "string",
  "created_at": "2025-05-04"
}