Skip to main content
GET
/
customers
/
{customerID}
/
card_accounts
/
{cardAccountID}
/
withdrawals
/
{cardWithdrawalID}
Retrieve a card withdrawal
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/card_accounts/{cardAccountID}/withdrawals/{cardWithdrawalID} \
  --header 'Api-Key: <api-key>'
{
  "id": "<string>",
  "card_account_id": "<string>",
  "customer_id": "<string>",
  "amount": "<string>",
  "currency": "usdc",
  "destination": {
    "chain": "<string>",
    "address": "<string>",
    "memo": "<string>",
    "tx_hash": "<string>",
    "gas_fee": {
      "amount": "<string>",
      "currency": "<string>"
    }
  },
  "created_at": "<string>",
  "updated_at": "<string>",
  "type": "top_up_balance_withdrawal",
  "client_note": "<string>"
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
cardAccountID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
cardWithdrawalID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

The retrieved withdrawal

A card funds withdrawal

id
string
required

ID of the withdrawal

Required string length: 1 - 42
card_account_id
string
required

ID of the card account associated with the withdrawal

Required string length: 1 - 42
customer_id
string
required

ID of the customer who owns the card account

Required string length: 1 - 42
amount
string
required

The amount represented as a decimal string

currency
enum<string>
required

The currency of the withdrawal, which is the crypto currency on the card account

Available options:
usdc
destination
object
required
created_at
string
required

Timestamp when the withdrawal was created, in ISO8601 format

updated_at
string
required

Timestamp when the withdrawal was last updated, in ISO8601 format

type
enum<string>

The type of the withdrawal. Defaults to top_up_balance_withdrawal.

Available options:
top_up_balance_withdrawal,
fee
client_note
string

An optional client-provided note for the withdrawal