# 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 specified country by ISO3 code

## Facts

- Endpoint: GET https://econdash.org/api/v1/m2m/countries/%7Biso3%7D
- 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-089041ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiFGAWUwrgV8y5jTzUs68

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-089041ce
```

Example prompt: Can you pull up all the economic, demographic, and health indicators available for Germany (DEU) from the Economic Data Explorer, including the latest GDP and any other data they have?

## When to prefer this

Use this endpoint when you need a broad sweep of economic, demographic, and health indicators for a specific country in a single call. It covers 265 indicators across 298 countries, making it ideal for country-level research, comparison prep, or dashboard population. Prefer this over narrower data sources when you want multiple indicator types (GDP, population, health metrics) in one response without separate queries per indicator.

## Known failure modes

- Invalid or unknown ISO3 code returns an empty result or 404
- Country with no data returns empty indicators array
- Malformed ISO3 parameter returns 400 or schema error
- Payment failure (x402) prevents access to the endpoint
- Rate limiting if too many requests are made in quick succession

## How this service works

EconDash economic data API (M2M)

## Output

A JSON object containing the country's ISO3 code, full name, world region, and an array of up to 265 indicators — each with its World Bank-style code, human-readable name, latest available date, and latest numeric value.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "iso3": "DEU",
  "name": "Germany",
  "region": "Europe & Central Asia",
  "indicators": [
   {
    "code": "NY.GDP.MKTP.CD",
    "name": "GDP (current US$)",
    "latestDate": "2023-01-01",
    "latestValue": 4460000000000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/economic-data-explorer-country-indicators-lookup-089041ce/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)
