# Economic Data Explorer – Country Indicators Lookup

> Economic Data Explorer – Country Indicators Lookup is a paid API for AI agents from econdash.org, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns all available economic, demographic, and health indicators for a given country, including latest values and dates.

## Facts

- Endpoint: GET https://econdash.org/api/v1/m2m/countries/%7Biso3%7D/indicators
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/economic-data-explorer-country-indicators-lookup-60ff0de0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QcANQYaSIltZfl4hS1p6_

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 economic-data-explorer-country-indicators-lookup-60ff0de0
```

Example prompt: Pull up all the economic, demographic, and health indicators available for Brazil (ISO code BRA) from the EconDash explorer — I want to see the latest values for all 265 indicators.

## When to prefer this

Use this endpoint when you need a broad sweep of all available economic, demographic, or health indicators for a single country in one call. Ideal for building country profiles, comparison dashboards, or when you don't know in advance which specific indicators are available for a given nation. Prefer this over narrower indicator-specific endpoints when breadth is more important than depth.

## Known failure modes

- Invalid or unrecognized ISO3 country code returns empty array or 404
- Country exists but has no data for any indicators returns empty array
- Malformed request returns 400 bad request
- Payment not completed returns 402 Payment Required
- Rate limiting or server error returns 500

## How this service works

Interactive dashboard for exploring economic, demographic, and health indicators across countries. 265 indicators, 298 countries.

## Output

A JSON array of indicator objects, each containing the indicator code (e.g. NY.GDP.MKTP.CD), human-readable name (e.g. 'GDP (current US$)'), the date of the latest available data point, and its numeric value.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "code": "NY.GDP.MKTP.CD",
   "name": "GDP (current US$)",
   "latestDate": "2023-01-01",
   "latestValue": 27360000000000
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/economic-data-explorer-country-indicators-lookup-60ff0de0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from econdash.org](https://www.zero.xyz/host/econdash.org/llms.txt)
