Skip to main content
GET
/
customers
/
{customerID}
/
card_accounts
Get all card accounts
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/card_accounts \
  --header 'Api-Key: <api-key>'
{
  "count": 123,
  "data": [
    {
      "id": "<string>",
      "customer_id": "<string>",
      "status": "active",
      "balances": {
        "available": {
          "amount": "<string>",
          "currency": "usdc"
        },
        "hold": {
          "amount": "<string>",
          "currency": "usdc"
        }
      },
      "freezes": [
        {
          "card_account_id": "<string>",
          "reason": "lost_or_stolen",
          "created_at": "<string>",
          "reason_detail": "<string>",
          "starting_at": "<string>",
          "ending_at": "<string>"
        }
      ],
      "client_reference_id": "<string>",
      "cardholder_name": {
        "first_name": "<string>",
        "last_name": "<string>",
        "middle_name": "<string>"
      },
      "card_image_url": "<string>",
      "status_reason": "<string>",
      "card_details": {
        "last_4": "1264",
        "expiry": "10/24",
        "bin": "44325280",
        "pin_status": "not_set"
      },
      "crypto_account": {
        "type": "standard",
        "address": "<string>"
      },
      "funding_instructions": {
        "currency": "usdc",
        "chain": "arbitrum",
        "address": "<string>",
        "memo": "<string>"
      },
      "additional_funding_instructions": [
        {
          "currency": "usdc",
          "chain": "arbitrum",
          "address": "<string>",
          "memo": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

List of all card accounts owned by the customer

count
integer
required

The number of card accounts returned

data
object[]
required