# Web3Identity Chainlink Token Price

> Web3Identity Chainlink 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-14).

Returns the current price of a crypto token aggregated from multiple sources including Chainlink

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/chainlink
- 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-c91921bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gcxh0M6SE5Cs7IdeCoaPx

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-c91921bc
```

Example prompt: What is the current price of ETH in USD right now, pulled from Chainlink aggregated sources?

## When to prefer this

Use this endpoint when you need a reliable, aggregated crypto token price backed by Chainlink oracle infrastructure. Prefer it over single-source price APIs when trust and decentralization of the price feed matters, or when building Web3-native applications that already rely on Chainlink data.

## Known failure modes

- Token not supported by Chainlink price feeds — returns empty or error response
- Payment of 0.01 USDC not provided — returns 402 Payment Required
- Invalid or missing token type parameter — returns 400 Bad Request
- Chainlink oracle temporarily unavailable — returns 503 or stale data

## How this service works

Get current token price from multiple aggregated sources

## Output

A JSON object containing the token symbol, its current price, the quote currency, and the 24-hour price change percentage

## 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-c91921bc/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)
