# Cardano Token Price (Aggregated) — api.web3identity.com

> Cardano Token Price (Aggregated) — api.web3identity.com is a paid API for AI agents from api.web3identity.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-14).

Returns the current price of Cardano (ADA) aggregated from multiple sources, including 24-hour change data

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/cardano
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-994c302f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pu3JPVWP61YyHVs-6JJq0

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 api-web3identity-com-994c302f
```

Example prompt: What's the current price of Cardano (ADA) in USD right now, including how much it has changed in the last 24 hours?

## When to prefer this

Use this endpoint when you specifically need aggregated Cardano (ADA) price data from multiple sources for reliability, and want a simple per-call pay-as-you-go model at $0.01 USDC. Prefer this over exchange-specific APIs when source diversity and Web3-native payment (x402) matter. Best for agents that need real-time ADA pricing without managing API keys.

## Known failure modes

- Token not found or unsupported — likely 404 or empty response
- Payment not provided or insufficient — 402 Payment Required if x402 header is missing
- Aggregator source unavailable — may return stale or null price data
- Rate limit exceeded — 429 Too Many Requests
- Network timeout from underlying price aggregators — 503 or delayed response

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object with the current Cardano price as a number, the token name ('cardano' or 'ADA'), the currency denomination (e.g. 'USD'), and the 24-hour percentage price change.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "price": {
       "type": "number"
      },
      "token": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "change24h": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-web3identity-com-994c302f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.web3identity.com](https://www.zero.xyz/host/api.web3identity.com/llms.txt)
