GET
/
v2
/
cards
curl --request GET \
  --url https://thirdparty.qonto.com/v2/cards \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "current_page": 2,
    "next_page": "<any>",
    "prev_page": "<any>",
    "total_pages": 2,
    "total_count": 150,
    "per_page": 100
  },
  "cards": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "nickname": "💳 for 🍗",
      "embossed_name": "DOLORES KOULECHOV",
      "status": "pending",
      "pin_set": true,
      "mask_pan": "511768******7662",
      "exp_month": "3",
      "exp_year": "2024",
      "last_activity_at": "2023-11-07T05:31:56Z",
      "last_digits": "7662",
      "ship_to_business": false,
      "atm_option": true,
      "nfc_option": true,
      "online_option": true,
      "foreign_option": true,
      "atm_monthly_limit": 1000,
      "atm_monthly_spent": 1000,
      "atm_daily_limit": 1000,
      "atm_daily_spent": 0,
      "atm_daily_limit_option": true,
      "payment_monthly_limit": 1000,
      "payment_monthly_spent": 1000,
      "payment_daily_limit": 1000,
      "payment_daily_spent": 1000,
      "payment_daily_limit_option": true,
      "payment_transaction_limit": 1000,
      "payment_transaction_limit_option": true,
      "active_days": [
        1,
        3,
        5
      ],
      "holder_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "bank_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "shipped_at": null,
      "card_type": "debit",
      "card_level": "standard",
      "payment_lifespan_limit": 100,
      "payment_lifespan_spent": 42,
      "pre_expires_at": "2023-11-07T05:31:56Z",
      "categories": [
        "transport",
        "restaurant_and_bar",
        "food_and_grocery"
      ],
      "renewed": false,
      "renewal": false,
      "parent_card_summary": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "last_digits": "7662"
      },
      "had_operation": false,
      "had_pin_operation": false,
      "card_design": "plus.black.2023",
      "type_of_print": "embossed",
      "upsold": false,
      "upsell": false,
      "discard_on": "2022-11-31",
      "reordered": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Query Parameters

query
string

Text search can be performed on the following fields:

  • memberships.first_name
  • memberships.last_name
  • cards.id
  • cards.nickname
  • cards.last_digits
  • cards.status
  • cards.pre_expires_at
  • cards.exp_year
  • cards.exp_month
page
integer
default:1

Returned page (cf. Pagination).

Example:

2

per_page
integer
default:100

Number of cards per page (cf. Pagination).

Required range: x <= 100
Example:

20

sort_by
string
default:status:asc

Cards can be sorted by a specific property and order.<br>👉 Property: status, nickname, last_activity_at or created_at<br>👉 Order: asc (Ascending) / desc (Descending)

holder_ids[]
string[]

Cards can be filtered by their holder_id.

The membership identifier of the card holder.

statuses[]
enum<string>[]

Cards can be filtered by their status.

Status of the card. Pending: the card is awaiting PIN to be set or issuing to complete. Live: the card is active and can be used. Paused: the card is paused and cannot be used until un-paused. Stolen: the card has been reported as stolen and cannot be used. Lost: the card has been reported as lost and cannot be used. Pin_blocked: the card has been blocked due to too many wrong PIN attempts. It can still be used for card-not-present transactions. Discarded: the card has been discarded and cannot be used. Expired: the card has expired and cannot be used. Shipped_lost: the card has been lost during shipping and cannot be used. Onhold: the card issuing is on hold due to missing KYC/KYB validation and cannot be used. Order_canceled: the card order has been canceled. Pre_expired: the flash card has reached the end of its validity and cannot be used. Abusive: the card has been reported as abusive and cannot be used.

Available options:
pending,
live,
paused,
stolen,
lost,
pin_blocked,
discarded,
expired,
shipped_lost,
onhold,
order_canceled,
pre_expired,
abusive
Example:

"statuses[]=pending&statuses[]=live"

bank_account_ids[]
string[]

Cards can be filtered by their bank_account_id.

The id of the bank account to which the card is attached

Example:

"bank_account_ids[]=id1&bank_account_ids[]=id2"

card_levels[]
enum<string>[]

Cards can be filtered by their card_level.

Level of the card. A level defines a set of card capabilities and pricing. Standard, plus and metal are physical cards. See our Qonto cards: https://qonto.com/en/payment-methods/card.

Available options:
standard,
plus,
metal,
virtual,
flash,
advertising
Example:

"card_levels[]=virtual&card_levels[]=flash"

ids[]
string[]

Cards can be filtered by their id.

Unique card identifier

Example:

"ids[]=id1&ids[]=id2"

Response

200
application/json
Returns the list of cards.

The response is of type object.