# AgentToll DEX Stock Token Quote

> AgentToll DEX Stock Token Quote is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns live DEX quotes for Coinbase B20 tokenized equities on Base, including price, 24h/7d volume, liquidity, and FDV per pool.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/finance/token-stock-quote
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-dex-stock-token-quote-a70f05f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mPPYZ7S4NA4RM1aMXTTYH

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 agenttoll-dex-stock-token-quote-a70f05f0 -d '<json body>'
```

Example prompt: What's the current DEX price, 24h volume, and liquidity for the TSLA stock token on Base? Give me the top 3 pools.

## When to prefer this

Use this endpoint when you need live, on-chain DEX pricing and liquidity data specifically for Coinbase B20 tokenized equities on the Base network. It is purpose-built for tokenized stock tokens rather than native crypto assets, making it the right choice when monitoring or trading RWA (real-world asset) equity tokens on-chain. Prefer this over generic crypto price APIs when you need pool-level granularity including FDV and 7-day volume for tokenized equities.

## Known failure modes

- Query string does not match any known B20 stock token — empty result set returned
- Limit parameter out of range (must be 1–10) — validation error
- Token has insufficient liquidity or no active pool — partial or empty data
- On-chain data source temporarily unavailable — service error or stale data
- Payment not received or insufficient USDC balance — x402 payment required error

## Output

Returns one or more pool records for matching tokenized equity tokens, each containing the current DEX price, 24-hour volume, 7-day volume, available liquidity, and fully diluted valuation (FDV). Results are sourced from live on-chain DEX data on the Base network for Coinbase B20 stock tokens.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1
      },
      "query": {
       "type": "string",
       "maxLength": 20
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-dex-stock-token-quote-a70f05f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
