# EconSignalPulse GDP Tracker

> EconSignalPulse GDP Tracker is a paid API for AI agents from econsignalpulse.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Compares real GDP growth data from World Bank against IMF forward projections for 190+ countries, with revision analysis, peer benchmarking, and growth decomposition

## Facts

- Endpoint: GET https://econsignalpulse.vercel.app/api/econsignal/gdp-tracker
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/econsignalpulse-gdp-tracker-289b7944
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g8VdBBHrrmx6znDHxIEZ5

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 econsignalpulse-gdp-tracker-289b7944
```

Example prompt: Pull the GDP tracker for Brazil — show me the World Bank real growth figures versus IMF forward projections for the last 5 years, including any revision history and how Brazil compares to its EM peers.

## When to prefer this

Use this endpoint when you need to cross-reference official GDP actuals (World Bank) with forward-looking IMF projections in one call, particularly for revision analysis or EM/frontier peer benchmarking. Prefer this over generic data APIs when you need structured decomposition of growth drivers and forecast accuracy metrics rather than raw time-series data alone.

## Known failure modes

- Country not found or unsupported — endpoint covers 190+ countries but fringe territories may return empty data
- IMF projection data lag — projections may not reflect the most recent WEO update
- Date range out of bounds — historical data may be limited for very early years or very recent quarters
- API returns 402 if x402 payment header is missing or USDC payment fails
- Rate limiting or timeout if too many countries requested simultaneously

## How this service works

Real GDP growth (World Bank) versus IMF forward projections for 190+ countries — revision analysis, peer comparison and growth decomposition. For macro and EM research agents.

## Output

Returns real GDP growth figures from the World Bank alongside IMF forward projections for the requested country or countries, including revision analysis showing how forecasts changed over time, peer group comparisons against similar economies, and a growth decomposition breaking down the drivers of GDP performance.

## 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": {
      "iso2": {
       "type": "string",
       "description": "ISO2 code for World Bank — e.g. IN | BR | DE | KR | SA"
      },
      "iso3": {
       "type": "string",
       "description": "ISO3 code for IMF — e.g. IND | BRA | DEU | KOR | SAU"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "country": {
       "type": "string",
       "description": "Country name — e.g. \"India\" | \"Brazil\" | \"Germany\" | \"South Korea\" | \"Saudi Arabia\""
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "imf_forecasts": [
   {
    "year": "2025",
    "growth_pct": 6.5
   },
   {
    "year": "2026",
    "growth_pct": 6.6
   }
  ],
  "query_summary": {
   "iso2": "IN",
   "iso3": "IND",
   "country": "India"
  },
  "historical_gdp": [
   {
    "year": "2023",
    "gdp_usd_bn": 3730,
    "growth_pct": 8.2
   },
   {
    "year": "2022",
    "gdp_usd_bn": 3385,
    "growth_pct": 7
   }
  ],
  "growth_assessment": {
   "risks": [
    "Monsoon dependency (agriculture 15% of GDP)",
    "Fiscal deficit 5.8% GDP",
    "Current account deficit pressure from oil imports"
   ],
   "trend": "Accelerating — India is now the fastest-growing major economy globally",
   "peer_rank": "#1 among G20 economies by growth rate 2023-2025",
   "structural_drivers": [
    "Demographic dividend (900M working-age population)",
    "Manufacturing diversification (China+1)",
    "Digital services export boom",
    "Infrastructure investment cycle"
   ]
  },
  "gdp_per_capita_usd": 2730,
  "middle_income_trajectory": "India projected to reach upper-middle income threshold ($4,466/capita) by 2027-2028"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/econsignalpulse-gdp-tracker-289b7944/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from econsignalpulse.vercel.app](https://www.zero.xyz/host/econsignalpulse.vercel.app/llms.txt)
