---
title: "Card not found — Anis Developers"
description: "The sold card is not in this wallet, or it is not yours. Both get the same answer."
url: https://developers.anis.ly/errors/card-not-found/
language: en
---

> Every page of this documentation: https://developers.anis.ly/llms.txt

[Error codes](https://developers.anis.ly/errors.md) · The request itself

# Card not found

- **Code:** `card_not_found`
- **Status:** 404
- **If this was an order:** This request bought nothing
- **Send it again unchanged?** No — change something first
- **.NET SDK:** `ResourceNotFoundException`

## What it means

The sold card is not in this wallet, or it is not yours. Both get the same answer.

## What to do

- Check the sold-card id and the wallet it was bought from; the owned-cards list shows both.

## Where you can meet it

- GET [Read an owned card](https://developers.anis.ly/reference/read-owned-card.md) `/v1/wallets/{walletId}/cards/{soldCardId}`
- POST [Reveal a card](https://developers.anis.ly/reference/reveal-card.md) `/v1/wallets/{walletId}/cards/{soldCardId}/reveal`

## Example

The body of the refusal. Its `type` is the address of this page.

```
{
  "type": "https://developers.anis.ly/errors/card-not-found",
  "title": "Card not found",
  "status": 404,
  "code": "card_not_found",
  "requestId": "01J9R2K8T4V6XQ0M3B7C5D9E1F"
}
```
