# Macaroon Network GPU LLM Pricing Change Detector

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

Returns per-target pricing change events for GPU/LLM services, indicating whether the latest scraped snapshot differs from the previous one, including fetch timestamps and content hashes for both snapshots.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/polymathica-gpu-llm-pricing-changes-v1
- Price: $0.01/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-change-detector-6f9a43de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_puXoVfvvOU6sa1x7tUcTE

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-change-detector-6f9a43de -d '<json body>'
```

Example prompt: Check whether the pricing for any GPU or LLM providers has changed since the last scrape — I want to know if the current snapshot differs from the previous one, along with the fetch times and content hashes for both.

## When to prefer this

Choose this endpoint when you need lightweight, low-latency detection of GPU or LLM pricing page changes without triggering live web fetches. It reads from a pre-populated local database updated on a 6-hour cadence, making it ideal for polling or event-driven pipelines that need content-hash-based diffing rather than full page retrieval. Prefer it over live scrapers when cost, rate-limit avoidance, or reproducibility matters.

## Known failure modes

- Target not found in local feed database — no event returned
- Feed not yet populated for a new target — missing previous snapshot
- Stale data if scraper cadence is delayed beyond 6 hours
- Invalid or malformed target identifier — request error
- Schema mismatch if body is not valid JSON POST payload

## How this service works

Per-target pricing change events -- whether the latest scraped snapshot differs from the previous one, with fetch times and content hashes for both. No outbound network on purchase; read from the local feed database populated by the scraper on a 6-hour cadence.

## Output

A pricing change event object per target indicating whether the current scraped snapshot differs from the previous one, along with fetch timestamps for both snapshots and their respective content hashes, read from a local feed database updated on a 6-hour cadence. No live network fetch is performed on purchase.

## 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-change-detector-6f9a43de/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)
