# AgentToll Economic Indicators

> AgentToll Economic Indicators is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches economic indicator data for a given country from government/federal data sources, paid per call via x402 USDC.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/gov/economic-indicators
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-economic-indicators-17db51d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NjqgKuQ-d_W7U8q1EyL3E

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 agenttoll-economic-indicators-17db51d8 -d '<json body>'
```

Example prompt: Can you pull the latest unemployment rate indicator for the United States from the federal economic data tools?

## When to prefer this

Choose this endpoint when you need structured macroeconomic indicator data (GDP, CPI, unemployment, trade, etc.) for a specific country, especially when integrating with AI agent workflows that support x402 micropayment protocols. It is well-suited for agents needing pay-per-call access without subscriptions, and for pipelines covering federal and government economic statistics across multiple countries.

## Known failure modes

- Unsupported or misspelled country name returns an empty dataset or error
- Unknown indicator string returns no matching data
- Payment failure via x402 results in a 402 response and no data returned
- Stale cache may return slightly outdated data indicated by the `cached: true` flag
- Rate limiting or provider downtime may return a failure response with success: false

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns an object containing a `data` field (array or object of economic indicator values), a `meta` object with record count, the data source name, and a generation timestamp, plus boolean flags for `success` and whether the result was `cached`.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string"
  },
  "indicator": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-economic-indicators-17db51d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
