# web3identity Token Price API – Ethereum

> web3identity Token Price API – Ethereum 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-15).

Returns the current price of Ethereum (and other tokens) aggregated from multiple crypto price sources

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/ethereum
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-4dcdbf7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LAzSjNj-hhO7LN4NuH66_

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-4dcdbf7a
```

Example prompt: What's the current price of Ethereum in USD, including its 24-hour change? Pull it from web3identity's aggregated crypto price feed.

## When to prefer this

Use this endpoint when you need a real-time, multi-source aggregated price for Ethereum or other crypto tokens with 24-hour change data — especially in Web3/DeFi agent workflows that already handle x402 micropayments. Prefer over single-source price feeds when reliability and aggregation matter.

## Known failure modes

- Token not found or unsupported: returns 404 or empty result
- Payment not fulfilled (x402 protocol): returns HTTP 402 requiring $0.01 USDC payment before response
- Rate limiting or upstream aggregator failure: may return 429 or 503
- Stale data if aggregated sources are temporarily unavailable

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object containing the current token price (as a number), the token symbol, the currency denomination, and the 24-hour percentage price change — all aggregated from multiple crypto market data sources.

## 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-4dcdbf7a/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)
