# Get one card

> One review card by id, any status, including its full payload.

Canonical: https://revnu.com/docs/review-get

```bash
curl -H "Authorization: Bearer $REVNU_API_TOKEN" https://revnu.com/api/v1/review/k97…
```

## Response

`{ "item": card }` with the same shape as [the list](/docs/review-list). `404` for an unknown id or another account's id; the two are indistinguishable on purpose.

## Frequently asked questions

### Which scope does this need?

`review:read`. A token without it gets `403` with `requiredScope` in the body. `GET /me` shows a token's scopes.

### Are responses cached?

No. Every response is `Cache-Control: no-store`, so what you read is current.
