# Macaroon Network Economic Indicator Search

> Macaroon Network Economic Indicator Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search macroeconomic indicator values (GDP, inflation, unemployment, population) across eight major economies and multiple recent years

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/economic-indicator-search-v1
- Price: $0.002/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-economic-indicator-search-2474aad4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1aqmEPMc87vp5uHZOqER0

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-economic-indicator-search-2474aad4 -d '<json body>'
```

Example prompt: Can you pull the GDP and inflation rate data for the US, Germany, and Japan over the last few years from the Macaroon Network economic indicator search?

## When to prefer this

Choose this endpoint when you need structured macroeconomic indicator data (GDP, inflation, unemployment, population) for major global economies across multiple years, especially when commercial reuse is required (CC BY 4.0 license). Prefer this over general web search when you need clean, structured numeric data ready for analysis or downstream computation. Ideal for financial research, economic reporting, and data enrichment workflows where consistent, machine-readable economic statistics are needed at low per-call cost.

## Known failure modes

- Economy or country not among the eight supported major economies — returns empty results or error
- Requested year outside available data range — returns no matching records
- Unsupported indicator type queried — no results returned
- Malformed POST body or missing required fields — returns 400-level error
- Payment not processed — 402 Payment Required response before data is returned

## How this service works

Search macroeconomic indicator values (GDP, inflation, unemployment, population) across eight major economies and multiple recent years. Published under CC BY 4.0, explicit commercial reuse permitted.

## Output

Returns structured macroeconomic indicator values (GDP, inflation rate, unemployment rate, population) for queried economies and years, including country name, indicator type, year, and numeric value. Data is licensed under CC BY 4.0 and explicitly permits commercial reuse.

## 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-economic-indicator-search-2474aad4/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)
