# Macaroon Network GPU & LLM Pricing Feed

> Macaroon Network GPU & LLM Pricing Feed is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns real-time, structured GPU and LLM API pricing data scraped from public cloud provider websites, with per-provider plan details, source URLs, content hashes, and freshness metadata.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/polymathica-gpu-llm-pricing-v1
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-gpu-llm-pricing-feed-ddf1d73b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_skhYBEJSStVi10IWmUPpu

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 macaroon-network-gpu-llm-pricing-feed-ddf1d73b -d '<json body>'
```

Example prompt: Pull the latest GPU and LLM API pricing from the Macaroon Network feed so I can compare current per-token and per-hour costs across cloud providers like AWS, GCP, Azure, and the major LLM API providers.

## When to prefer this

Choose this endpoint when you need current, structured, machine-readable GPU or LLM API pricing data without scraping provider websites yourself. Ideal for cost-comparison workflows, budget planning for AI infrastructure, detecting pricing changes, or enriching agent decision-making with real pricing context. Prefer this over manual scraping or stale cached data when freshness within 6 hours is sufficient and you want parsed, normalized pricing rather than raw HTML.

## Known failure modes

- Stale data if scraper has not yet completed its 6-hour refresh cycle for a given provider
- Provider not tracked returns empty or missing pricing records for that source
- Malformed request body returns validation error against the input schema
- Provider website structure changed since last scrape may cause incomplete or null pricing fields
- Network or feed database outage returns service unavailable error

## How this service works

Real-time GPU and LLM API pricing data scraped from public cloud provider websites. Structured, parsed pricing with per-provider plan details, source URLs, content hashes, and freshness. No outbound network on purchase — data is read from the local feed database populated by the scraper on a 6-hour cadence.

## Output

Returns structured pricing records for GPU instances and LLM APIs across tracked cloud providers, including per-provider plan details (instance types, pricing tiers, per-token or per-hour rates), source URLs pointing to the original provider pages, content hashes for verifying data integrity, and freshness metadata indicating when the data was last scraped (updated on a 6-hour cadence).

## 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": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "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/macaroon-network-gpu-llm-pricing-feed-ddf1d73b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
