---
title: "Get card"
method: GET
path: "/card/{id}"
tags: ["Card"]
---

# Get card

`GET /card/{id}`

Get a credit card by ID associated with the current user.

## Path parameters

- `id` string, required — ID of the card to get.

## Response `200`

Credit card details.

- object
  - `data` Card, required — Credit card used for payments in the Terminal shop.
    - `id` string, required — Unique object identifier. The format and length of IDs may change over time.
    - `brand` string, required — Brand of the card.
    - `expiration` object, required — Expiration of the card.
      - `year` integer, required — Expiration year of the card.
      - `month` integer, required — Expiration month of the card.
    - `last4` string, required — Last four digits of the card.
    - `created` string, required — Date the card was created.

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2025-04-14** `58fa4af8e325` — 1 info
  - added the required property `data/allOf[#/components/schemas/Card]/created` to the response with the `200` status
- **2025-03-19** `1c6726b12e29` — 4 breaking, 24 info
  - the response's body type/format changed from ``/`` to `object`/`` for status `401`
  - the response's body type/format changed from ``/`` to `object`/`` for status `404`
  - the response's body type/format changed from ``/`` to `object`/`` for status `429`
  - the response's body type/format changed from ``/`` to `object`/`` for status `500`
  - …24 more
- **2025-03-07** `979a6c40552c` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/terminaldotshop/apis/terminal-api/changes/card/:id/get.md)

---

[API](https://skmtc.dev/terminaldotshop/apis/terminal-api.md) · [All operations](https://skmtc.dev/terminaldotshop/apis/terminal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/terminaldotshop/terminal-api/revisions/84ef614abb97/schema)
