# TokenGuard CoinPaprika Market Data

> TokenGuard CoinPaprika Market Data is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches cryptocurrency market data from CoinPaprika via the TokenGuard API for AI agents

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/coinpaprika
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-coinpaprika-market-data-1d8def1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C_ycGalJUpugdxt329rcf

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 tokenguard-coinpaprika-market-data-1d8def1e -d '<json body>'
```

Example prompt: Can you pull the CoinPaprika market data for Ethereum — I want to see the current price, market cap, 24h volume, and rank?

## When to prefer this

Choose this endpoint when you need structured CoinPaprika market data (price, market cap, volume, rank) for a specific cryptocurrency within an AI agent pipeline that supports x402 micropayments on Base. Prefer this over raw CoinPaprika API calls when you want a pay-per-use model with no API key management, or when bundling it with other TokenGuard DeFi/on-chain analytics in the same session.

## Known failure modes

- Unknown or unsupported coin ID returns an empty or error JSON response
- Payment failure on Base network results in 402 or access denial
- Rate limiting if micropayment not processed correctly
- Invalid request body format causes malformed query error
- CoinPaprika upstream outage may result in stale or unavailable data

## How this service works

coinpaprika data for AI agents.

## Output

Returns a JSON object containing CoinPaprika market data for the queried cryptocurrency, which may include current price (USD and BTC), market capitalization, 24-hour trading volume, circulating supply, total supply, market rank, percentage price changes, and coin metadata such as name, symbol, and description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-coinpaprika-market-data-1d8def1e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
