# srch.best Indicators

> srch.best Indicators 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 economic and development indicators data for specified countries and year ranges, paid per request via x402

## Facts

- Endpoint: POST https://x402.srch.best/indicators
- 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-indicators-d57250da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mpt6BmJZEAr9cIpK-43pl

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-indicators-d57250da -d '<json body>'
```

Example prompt: Can you pull structured indicator data for GDP per capita and life expectancy for US, DE, and JP from 2010 to 2022?

## When to prefer this

Choose this endpoint when you need structured, machine-readable economic or development indicator data for one or more countries over a defined year range, especially in agentic workflows where payment is handled via x402. Prefer it over general web search when you need clean, normalized indicator values rather than narrative content, and when you need to query multiple countries and indicators in a single call.

## Known failure modes

- Invalid or unrecognized country codes return an error or empty results
- Indicator names that don't match available datasets return empty or partial results
- Year range outside 1900–2100 bounds rejected by schema validation
- Requesting more than 10 countries or 10 indicators triggers validation error
- Payment failure via x402 prevents request from being processed
- Network timeout if upstream data source is slow

## How this service works

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

## Output

A structured data payload containing time-series indicator values for the requested countries and year range, organized by country code, indicator name, and year — suitable for direct consumption by agents performing analysis, comparison, or reporting tasks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "toYear": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 1900
  },
  "fromYear": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 1900
  },
  "countries": {
   "type": "array",
   "items": {
    "type": "string",
    "pattern": "^[A-Za-z]{2,3}$"
   },
   "maxItems": 10,
   "minItems": 1
  },
  "indicators": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 80,
    "minLength": 2
   },
   "maxItems": 10,
   "minItems": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/srch-best-indicators-d57250da/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)
