# EconDash Economic Indicator Lookup

> EconDash Economic Indicator 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).

Retrieves data for a specific economic indicator by its World Bank-style code (e.g. NY.GDP.MKTP.CD) via a pay-per-call M2M API

## Facts

- Endpoint: GET https://econdash.org/api/v1/m2m/indicators/test
- 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/econdash-economic-indicator-lookup-bf451aa0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yf2tCqvEWWxsw7Gf58kUU

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 econdash-economic-indicator-lookup-bf451aa0
```

Example prompt: Can you fetch the EconDash economic indicator data for NY.GDP.MKTP.CD — I want the GDP figures that come back from their M2M API.

## When to prefer this

Use this endpoint when you need programmatic, machine-to-machine access to specific economic, demographic, or health indicators by their World Bank-style codes. Prefer this over scraping or manual lookup when building automated pipelines that need structured indicator data with a known code. Best suited for agents that already know the indicator code and need the raw data values.

## Known failure modes

- Invalid or unknown indicator code returns an error or empty result
- Missing required 'code' path parameter causes request failure
- Payment of 0.02 USDC not fulfilled results in 402 Payment Required
- Network timeout if the data backend is slow
- Indicator code exists but has no data for certain countries or time ranges

## How this service works

EconDash economic data API (M2M)

## Output

Returns structured data for the requested economic indicator, likely including time-series values, country-level statistics, and metadata associated with the indicator code (e.g. GDP in current USD, population figures, health metrics depending on the code supplied).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "code"
     ],
     "properties": {
      "code": {
       "type": "string",
       "description": "Indicator code, e.g. NY.GDP.MKTP.CD"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/econdash-economic-indicator-lookup-bf451aa0/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)
