Skip to main content
GET
/
api
/
v1
/
cards
List cards
curl --request GET \
  --url http://localhost:7701/api/v1/cards \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {}
  ],
  "meta": {
    "current_page": 1,
    "per_page": 15,
    "total": 10,
    "last_page": 1
  }
}

Authorizations

X-API-Key
string
header
required

Company API key. Send in the X-API-Key header.

Query Parameters

customer_id
integer
Example:

42

brand
string
Example:

"visa"

last_4_digits
string
Example:

"1234"

holder_name
string
Example:

"John"

per_page
integer
Example:

15

page
integer
Example:

1

Response

Paginated list of cards

data
object[]
meta
object