# CoinStats Single NFT Asset by Collection and Token ID

> CoinStats Single NFT Asset by Collection and Token ID is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Retrieves metadata and details for a single NFT asset identified by its collection contract address and token ID

## Facts

- Endpoint: POST https://x402.coinstats.app/nft/0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/asset/1
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-db4f16a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_abEoDxa4uSLCzod1mauZe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-coinstats-app-db4f16a2 -d '<json body>'
```

Example prompt: Can you pull up the details and traits for Bored Ape Yacht Club token #1 — the contract address is 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d?

## When to prefer this

Use this endpoint when you need detailed metadata for exactly one NFT asset identified by both its ERC-721/ERC-1155 collection contract address and a specific token ID. Prefer this over general crypto endpoints when the query is NFT-specific and you have the contract address handy.

## Known failure modes

- Invalid or non-existent contract address returns 404 or empty result
- Token ID does not exist in the collection returns error
- Payment authorization failure (x402) blocks the request
- Network/RPC timeout when fetching on-chain data
- Unsupported blockchain or contract standard returns error

## How this service works

Single NFT asset by collection + token id

## Output

Returns metadata for the specific NFT including its name, image URL, description, traits/attributes, collection info, and on-chain ownership details for the given contract address and token ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type"
 ],
 "properties": {
  "type": {
   "enum": [
    "24h",
    "1w",
    "1m",
    "3m",
    "6m",
    "1y",
    "all"
   ],
   "type": "string",
   "description": "Time period for the data"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-db4f16a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinstats.app](https://www.zero.xyz/host/x402.coinstats.app/llms.txt)
