---
title: "Get a Card Issue by ID"
method: GET
path: "/v1/cards/issues/{issue_id}"
tags: ["Card Issues"]
---

# Get a Card Issue by ID

`GET /v1/cards/issues/{issue_id}`

Retrieve the full details of a card issue by its ID. Only returns issues that belong to your API key.

**Requires Enterprise tier.** Returns 403 for Free and Pro tier API keys.

**Example curl:**
```bash
curl -H "X-API-Key: your-api-key-here" \
     "https://api.cardhedger.com/v1/cards/issues/42"
```

## Path parameters

- `issue_id` integer, required

## Response `200`

Issue details

- CardIssueDetail — Full card issue details including resolution information.
  - `id` integer, required — Unique issue ID
  - `card_id` string, required — The card ID this issue relates to
  - `card_title` string, nullable — Card title (if provided at submission)
  - `issue_description` string, required — Description of the reported issue
  - `customer_id` integer, required — ID of the customer who submitted the issue
  - `status` string, required — Current status: `new` (submitted), `in_progress` (being reviewed), or `resolved` (fixed)
  - `resolution_description` string, nullable — Description of how the issue was resolved (populated when status is 'resolved')
  - `date_fixed` string, date-time, nullable — Timestamp when the issue was resolved (null until fixed)
  - `created_at` string, date-time, required — When the issue was submitted
  - `updated_at` string, date-time, required — When the issue was last updated

## Other responses

- `403` — Enterprise tier required
- `404` — Issue not found or does not belong to your API key
- `422` — Validation Error

---

[API](https://skmtc.dev/cardhedger/apis/card-hedge-api.md) · [All operations](https://skmtc.dev/cardhedger/apis/card-hedge-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cardhedger/card-hedge-api/revisions/497390569396/schema)
