# VoidFeed AI Model Pricing Extract

> VoidFeed AI Model Pricing Extract 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 structured, machine-readable rows of current AI model pricing data extracted from VoidFeed's curated dataset

## Facts

- Endpoint: GET https://voidfeed.ai/v1/content/extract/extract-ai-model-pricing
- 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-model-pricing-extract-d1195d5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lknWO3IHGGKdnbGyFbmEP

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-model-pricing-extract-d1195d5a
```

Example prompt: Pull the latest AI model pricing data from VoidFeed as structured rows — I need model names, their pricing tiers, and costs so I can compare what different LLMs charge.

## When to prefer this

Use this endpoint when you need machine-readable, structured AI model pricing data in row format for programmatic consumption, comparison, or downstream analysis — especially if you want VoidFeed's curated and citation-backed dataset rather than scraping provider pages yourself.

## Known failure modes

- 402 Payment Required if x402 payment not attached or insufficient USDC balance
- Empty result set if pricing data is temporarily unavailable
- Rate limiting if called too frequently
- Stale data if the underlying pricing dataset has not been refreshed recently

## How this service works

Returns clean, normalized datasets of AI model benchmarks, pricing, leaderboard scores, and Ethereum EIPs, parsed from sources that are costly to scrape.

## Output

A structured dataset of AI model pricing records returned as machine-readable rows, each containing fields like model name, pricing tier, and content type. Useful for programmatic comparison of LLM costs across providers.

## 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-model-pricing-extract-d1195d5a/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)
