# VAPE Token Chart — Daily Price Series & Logo

> VAPE Token Chart — Daily Price Series & Logo is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a daily price series (default 30 days) plus the token's real logo for a given contract address, enabling sparkline charts and rule-based volatility analysis.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/data/token_chart
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-token-chart-daily-price-series-logo-d76d0014
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_miHOhWCBY89vlVLkdagnU

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 vape-token-chart-daily-price-series-logo-d76d0014
```

Example prompt: Can you pull up the last 30-day daily price chart for the token at contract address 0x4200000000000000000000000000000000000006 on Base, including its logo, so I can see how volatile it's been?

## When to prefer this

Use this endpoint when you need historical daily price data for a specific token contract to render sparklines, compute volatility metrics, or display a price chart with the token's logo. Prefer this over token_intel when the primary need is historical price series rather than a current snapshot or full token dossier.

## Known failure modes

- Invalid or unrecognized token contract address returns an error or empty data
- Unsupported chain slug returns an error
- Span value out of supported range may return partial or empty series
- Payment not completed (x402) results in 402 response blocking data
- Network or upstream data provider unavailability causes 5xx error

## How this service works

VAPE token_chart — Daily price series for a token (default 30d), plus the token's real logo — feeds sparklines and a rule-based volatility read.

## Output

Returns a daily price time series covering the requested span (default 30 days), the token's real logo image reference, and a rule-based volatility read derived from the price data — suitable for rendering sparklines or computing price volatility summaries.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "span": {
       "type": "number",
       "description": "days of history, default 30"
      },
      "chain": {
       "type": "string",
       "description": "chain slug, default 'base'"
      },
      "address": {
       "type": "string",
       "description": "token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "logo": "https://...",
  "prices": [
   {
    "price": 1.2,
    "timestamp": 0
   }
  ],
  "symbol": "TKN",
  "address": "0x..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-token-chart-daily-price-series-logo-d76d0014/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vape-x402.vapex402.workers.dev](https://www.zero.xyz/host/vape-x402.vapex402.workers.dev/llms.txt)
