# srch.best Economy Data

> srch.best Economy Data is a paid API for AI agents from x402.srch.best, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns structured US economy time-series data (unemployment, consumer prices, payroll employment, hourly earnings) for a specified year range

## Facts

- Endpoint: POST https://x402.srch.best/economy
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/srch-best-economy-data-5c83eb6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gFCTJb8-NhTSrBwPRkIMP

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 srch-best-economy-data-5c83eb6d -d '<json body>'
```

Example prompt: Can you pull the US unemployment rate and consumer prices data from 2000 to 2023 so I can see how they trended over that period?

## When to prefer this

Choose this endpoint when you need structured, pre-parsed US macroeconomic time-series data (unemployment, CPI, payroll, wages) for a specific year range without scraping or parsing raw government sources. Ideal for agent pipelines requiring clean JSON economic data paid per-request via x402 micro-payments. Prefer over web search when you need machine-readable structured data rather than text results.

## Known failure modes

- Invalid year range (fromYear > toYear or outside 1900–2100) returns validation error
- Empty or invalid metrics array returns schema validation error
- Payment failure via x402 protocol returns 402 Payment Required
- Data unavailable for very early or future years may return partial or empty series
- Request with more than 4 metrics in the array is rejected

## How this service works

Structured economy data for agents, paid per request with x402 v2

## Output

A structured JSON response containing time-series economic data for the requested metrics (unemployment_rate, consumer_prices, payroll_employment, hourly_earnings) across the specified fromYear–toYear range, organized for direct agent consumption.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "toYear": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 1900
  },
  "metrics": {
   "type": "array",
   "items": {
    "enum": [
     "unemployment_rate",
     "consumer_prices",
     "payroll_employment",
     "hourly_earnings"
    ],
    "type": "string"
   },
   "maxItems": 4,
   "minItems": 1
  },
  "fromYear": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 1900
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/srch-best-economy-data-5c83eb6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.srch.best](https://www.zero.xyz/host/x402.srch.best/llms.txt)
