# Economic Data Explorer – Countries by Indicator

> Economic Data Explorer – Countries by Indicator 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 the list of countries that have data available for a specified economic, demographic, or health indicator code.

## Facts

- Endpoint: GET https://econdash.org/api/v1/m2m/indicators/%7Bcode%7D/countries
- 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-countries-by-indicator-58ab9024
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cxmiXx39PhUz5LuPDz8EW

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-countries-by-indicator-58ab9024
```

Example prompt: Which countries have data available for the GDP per capita indicator on EconDash? Use indicator code NY.GDP.PCAP.CD.

## When to prefer this

Use this endpoint when you need to discover which countries have available data for a specific indicator before querying actual indicator values. It is ideal for filtering or scoping subsequent data requests and for building country-selection UIs or agent decision trees around data availability.

## Known failure modes

- Invalid or unknown indicator code returns an empty array or 404 error
- Malformed code path parameter may return a 400 bad request
- Network timeout if the data source is temporarily unavailable
- Rate limiting or payment failure (402) if USDC payment is not provided

## How this service works

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

## Output

A JSON array of country objects, each containing the ISO3 country code (e.g. 'USA'), the full country name (e.g. 'United States'), and the region (e.g. 'North America'), representing every country for which data exists under the requested indicator.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "iso3": "USA",
   "name": "United States",
   "region": "North America"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/economic-data-explorer-countries-by-indicator-58ab9024/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)
