---
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.

## Other responses

- `401` — Unauthorized - Authentication is required and has failed or has not been provided.
- `404` — Not Found - The requested resource does not exist.
- `429` — Too Many Requests - You have made too many requests in a short period of time.
- `500` — Internal Server Error - Something went wrong on our end.

## Changes

- **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/ea86fe004b06/schema)
