Skip to main content
GET
/
cards
/
{card_id}
/
details
Get Card Details
curl --request GET \
  --url https://api.meow.com/v1/cards/{card_id}/details \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "billing_address": {
    "street_line_1": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "debit_account": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>"
  },
  "delivery_address": "<string>",
  "tracking_url": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Path Parameters

card_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

Unique card identifier.

billing_address
JAddress · object
required

Card billing address.

debit_account
CardDebitAccount · object
required

Linked banking account.

delivery_address
string | null

Masked delivery address for the physical card.

tracking_url
string | null

Shipping tracking URL for the physical card.