# Filecoin Token Price (web3identity)

> Filecoin Token Price (web3identity) 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 Filecoin (FIL) token price aggregated from multiple sources, including 24-hour price change.

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/filecoin
- 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-92788b67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cpjeLHfGf0mlW4uWOi7E4

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-92788b67
```

Example prompt: What's the current price of Filecoin (FIL) in USD, and how much has it changed in the last 24 hours? Pull from aggregated sources.

## When to prefer this

Use this endpoint when you specifically need the current Filecoin (FIL) token price pulled from multiple aggregated sources with 24h change data, especially in a web3 or DeFi context where multi-source aggregation reduces single-point-of-failure risk. Prefer this over generic crypto APIs when your workflow already uses the web3identity platform for other web3 identity or token data.

## Known failure modes

- Token not found or unsupported — endpoint may return 404 or empty result
- Aggregated source data unavailable — may return stale or null price
- Payment not processed (x402) — returns 402 Payment Required if USDC payment not included
- Network timeout from upstream price aggregators — may result in 503 or delayed response

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object with the current Filecoin token price (as a number), the token symbol, the currency denomination (e.g. USD), 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-92788b67/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)
