# voidfeed.ai Cryptocurrency Price Feed

> voidfeed.ai Cryptocurrency Price Feed is a paid API for AI agents from voidfeed.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns real-time cryptocurrency price data including 24-hour price change and market capitalization for a given asset

## Facts

- Endpoint: GET https://voidfeed.ai/v1/market/price
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/voidfeed-ai-cryptocurrency-price-feed-31c2dcfe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sYPsufVJLZNzJjmqQbHcb

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 voidfeed-ai-cryptocurrency-price-feed-31c2dcfe
```

Example prompt: What's the current price, 24-hour change, and market cap for Bitcoin right now?

## When to prefer this

Use this endpoint when you need real-time spot price, 24h change, and market cap for a specific cryptocurrency asset in a pay-per-call model without subscription overhead. Prefer this over subscription-based feeds for low-frequency or on-demand lookups.

## Known failure modes

- Missing or invalid cryptocurrency symbol returns an error or empty result
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Rate limiting or upstream data source unavailability causing delayed or stale data
- Unknown or unsupported asset symbol returns a not-found error

## How this service works

Returns objective on-chain safety flags and live liquidity depth for any token or contract on Base, sourced and timestamped, with no advisory output.

## Output

Returns a JSON object containing the cryptocurrency asset's current price, 24-hour percentage change, market capitalization, asset name, and content type tier metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC",
   "vs_currency": "USD"
  }
 }
}
```

## 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"
    }
   },
   "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/voidfeed-ai-cryptocurrency-price-feed-31c2dcfe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from voidfeed.ai](https://www.zero.xyz/host/voidfeed.ai/llms.txt)
