# DeepBlue Base DEX Real-Time Token Price

> DeepBlue Base DEX Real-Time Token Price is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns the real-time USD price of a token (e.g. ETH) sourced from Base DEX pools

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/price/ETH
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-5152a81d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GV-7jIHPhjYKqLbPAh3Vo

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-deepbluebase-xyz-5152a81d
```

Example prompt: What's the current USD price of ETH right now, pulled live from the Base DEX pools?

## When to prefer this

Use this endpoint when you need a real-time, low-latency USD price for a token available on Base DEX pools, especially ETH. Prefer this over aggregator APIs when you specifically need Base chain DEX pricing context rather than centralized exchange prices.

## Known failure modes

- Invalid or unsupported token symbol in the path returns an error or empty response
- Network or DEX pool data unavailability causes a fetch failure
- Payment not processed (x402 payment required) results in 402 response
- Stale or delayed price data if upstream DEX pool feed lags

## How this service works

Real-time token price from Base DEX pools

## Output

Returns a JSON object with the token symbol (e.g. 'ETH'), the current price in USD (e.g. 2308.62), the data source (e.g. 'binance'), and a Unix timestamp of when the price was fetched.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "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",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "token": {
       "type": "string"
      },
      "price_usd": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-5152a81d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
