# Economic Data Explorer – News Feed

> Economic Data Explorer – News Feed 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 a feed of economic, demographic, and health-related news articles filterable by country, category, or indicator

## Facts

- Endpoint: GET https://econdash.org/api/v1/m2m/news
- 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-news-feed-1212adcf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9fGgFCShKfmF1LG65_jTK

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-news-feed-1212adcf
```

Example prompt: Can you pull the latest economic news from econdash.org for Brazil — filter it by the GDP growth indicator so I only see relevant articles?

## When to prefer this

Use this endpoint when you need to surface recent news articles contextually tied to specific countries or economic/health/demographic indicators — particularly when you want curated economic intelligence news rather than raw indicator data values. Prefer this over raw data endpoints when the user wants readable article content rather than numeric time-series data.

## Known failure modes

- Invalid or unrecognized ISO3 country code returns empty results or 400 error
- Unknown indicator code returns empty result set
- Payment not provided or insufficient (402 Payment Required)
- No news available for the requested filter combination returns an empty array
- Rate limiting or quota exceeded returns 429 error

## How this service works

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

## Output

Returns a JSON array of news article objects, each containing an article ID, URL, title, source name, and publication timestamp — representing recent news matching the requested country, category, or indicator filters.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string",
       "description": "Filter by ISO3 country code"
      },
      "category": {
       "type": "string",
       "description": "Filter by category name"
      },
      "indicator": {
       "type": "string",
       "description": "Filter by indicator code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "id": 1,
   "url": "https://example.com/news/1",
   "title": "GDP Growth Accelerates in Q4",
   "source": "World Bank",
   "publishedAt": "2026-05-01T00:00:00Z"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/economic-data-explorer-news-feed-1212adcf/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)
