Skip to main content
GET
/
api
/
public
/
v1
/
cards
List active or suspended cards
curl --request GET \
  --url https://api.wallbit.io/api/public/v1/cards \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "status": "ACTIVE",
      "card_type": "VIRTUAL",
      "card_network": "visa",
      "card_last4": "1234",
      "expiration": "2029-01-01"
    },
    {
      "uuid": "c37ea154-f6d2-4c95-b3f4-80f07858db7f",
      "status": "SUSPENDED",
      "card_type": "PHYSICAL",
      "card_network": "mastercard",
      "card_last4": "5678",
      "expiration": "2028-06-01"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Response

Cards retrieved successfully

data
object[]