# BNB Token Price via web3identity

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

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

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/bnb
- Price: $0.01/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-4844c6c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ne89z5a1vH3AgEbCaYjeL

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-4844c6c4
```

Example prompt: What is the current price of BNB and how much has it changed in the last 24 hours — pull it from web3identity's aggregated price feed?

## When to prefer this

Use this endpoint when you need a quick, aggregated BNB price from multiple sources rather than a single exchange feed, especially in web3/DeFi agent workflows where BNB price is needed for calculations, portfolio valuation, or display. Prefer this when you want multi-source aggregation for BNB specifically and are already operating within the x402 micropayment ecosystem.

## Known failure modes

- Price feed unavailable — upstream aggregation source down
- Invalid token path — endpoint only serves BNB price at this URL
- Payment failure — x402 micropayment of $0.01 USDC not processed
- Rate limiting — too many requests in short window
- Stale data — aggregation lag if market data sources are slow

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object containing the current BNB token price as a number, the token symbol string, the currency denomination, 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-4844c6c4/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)
