Skip to main content
GET
/
cards
List Cards
curl --request GET \
  --url https://api.meow.com/v1/cards \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "display_name": "<string>",
      "last_four": "<string>",
      "is_physical": true,
      "cardholder": {
        "name": "<string>",
        "public_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "is_single_use": false,
      "expiration": "2023-11-07T05:31:56Z",
      "spending_restriction": {
        "merchants": [
          "<string>"
        ]
      }
    }
  ],
  "total": 123,
  "page": {
    "limit": 10,
    "offset": 0
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.meow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: 0 <= x <= 1000000
query
string | null
statuses
enum<string>[] | null
Available options:
pending,
active,
suspended,
closed,
failed
card_types
enum<string>[]
Available options:
physical,
virtual
from_created_time
string<date-time> | null
to_created_time
string<date-time> | null

Response

Successful Response

items
CardResponse · object[]
required
total
integer
required
page
MeowPage · object
required