---
title: "List Card Tokens"
method: GET
path: "/card_tokens"
---

# List Card Tokens

`GET /card_tokens`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `created_at.after` string, date-time — Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.before` string, date-time — Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.on_or_after` string, date-time — Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.on_or_before` string, date-time — Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.

## Response `200`

Card Token List

- CardTokenList — A list of Card Token objects.
  - `data` CardToken[], required — The contents of the list.
    - `created_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the card token was created.
    - `expiration_date` string, date, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date when the card expires.
    - `id` string, required — The Card Token's identifier.
    - `last4` string, required — The last 4 digits of the card number.
    - `length` integer, required — The length of the card number.
    - `prefix` string, required — The prefix of the card number, usually 8 digits.
    - `type` 'card_token', required — A constant representing the object's type. For this resource it will always be `card_token`.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.net/increase/apis/increase-api-2.md) · [All operations](https://skmtc.net/increase/apis/increase-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/increase/increase-api-2/versions/e968bcd4dcf9/schema)
