# Web3Identity Polkadot Token Price

> Web3Identity Polkadot Token Price 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-13).

Returns the current DOT price aggregated from multiple sources, including 24-hour change data

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/polkadot
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-992633ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pS0C3T1gvR4xaYhxFRo2L

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-992633ed
```

Example prompt: What's the current price of Polkadot (DOT) and how much has it changed in the last 24 hours?

## When to prefer this

Use this endpoint when you need a quick, aggregated current price for Polkadot (DOT) specifically, especially in a web3 or DeFi context where multi-source aggregation is preferred over a single exchange feed. Good for AI agents needing reliable DOT pricing without building their own aggregation.

## Known failure modes

- Token not found or unsupported: returns an error response
- Price data unavailable from aggregators: may return stale or null price
- Network timeout from upstream price sources: delayed or failed response
- Rate limit exceeded: HTTP 429 if too many requests
- Payment required: HTTP 402 if x402 payment header is missing or invalid

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object containing the current price of Polkadot (DOT) as a number, the token symbol, the quote currency (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-992633ed/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)
