Skip to main content
GET
/
cards
/
individual-cards
/
list
/
search
curl -X GET "https://api.cryptomate.me/cards/individual-cards/list/search?page=0&size=10&status=ACTIVE" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "content": [
    {
      "id": "icard_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
      "rain_card_id": "rain_9d3b2c10-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
      "client_id": "client_abc123",
      "type": "Virtual",
      "status": "ACTIVE",
      "last4": "4242",
      "expiration_month": 12,
      "expiration_year": 2028,
      "card_holder_name": "JOHN DOE",
      "approval_method": "TOPUP",
      "daily_limit": 100.00,
      "weekly_limit": 500.00,
      "monthly_limit": 2000.00
    }
  ],
  "page": 0,
  "size": 10,
  "total_elements": 1,
  "total_pages": 1
}
Returns a paginated list of individual cards for the authenticated company. Supports filtering by status, type, client, and text search. Requires an API key with access level 1 or higher.

Query parameters

page
integer
default:"0"
Page number (zero-based).
size
integer
default:"10"
Number of results per page.
status
string[]
Filter by card status. Repeatable. Possible values: ACTIVE, FROZEN, INACTIVE, DELETED, EXPIRED.
type
string[]
Filter by card type. Repeatable. Possible values: Virtual, Physical.
client_id
string
Filter cards belonging to a specific client.
search_type
string
Type of text search to apply. Possible values: CLIENT_ID, LAST4.
search_text
string
Text to search for. Used in combination with search_type.

Response

content
object[]
Array of individual card objects.
page
integer
Current page number.
size
integer
Page size.
total_elements
integer
Total number of cards matching the filters.
total_pages
integer
Total number of pages.
curl -X GET "https://api.cryptomate.me/cards/individual-cards/list/search?page=0&size=10&status=ACTIVE" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "content": [
    {
      "id": "icard_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
      "rain_card_id": "rain_9d3b2c10-1a2b-3c4d-5e6f-7a8b9c0d1e2f",
      "client_id": "client_abc123",
      "type": "Virtual",
      "status": "ACTIVE",
      "last4": "4242",
      "expiration_month": 12,
      "expiration_year": 2028,
      "card_holder_name": "JOHN DOE",
      "approval_method": "TOPUP",
      "daily_limit": 100.00,
      "weekly_limit": 500.00,
      "monthly_limit": 2000.00
    }
  ],
  "page": 0,
  "size": 10,
  "total_elements": 1,
  "total_pages": 1
}