# agentum.lat Economic Data

> agentum.lat Economic Data is a paid API for AI agents from agentum.lat, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves official World Bank economic indicators (GDP growth, inflation, unemployment, population) for any country by ISO code.

## Facts

- Endpoint: GET https://agentum.lat/economic-data
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-lat-economic-data-472ecd82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TF8rHiJeF5WZzYobuAyVD

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 agentum-lat-economic-data-472ecd82
```

Example prompt: Can you look up the official World Bank GDP growth rate for Brazil (BR)?

## When to prefer this

Choose this endpoint when you need official, internationally comparable macroeconomic indicators sourced from the World Bank for any country in the world. It is ideal for research, economic analysis, market sizing, and investment reports requiring authoritative data. Prefer it over regional APIs when you need standardized cross-country comparisons rather than real-time or highly granular local data.

## Known failure modes

- Invalid or unsupported ISO 3166-1 alpha-2 country code returns an error
- Unsupported metric name (not one of gdp_growth, inflation, unemployment, population) returns an error
- World Bank data unavailable for a specific country/metric combination may return null or empty result
- Network timeout or upstream World Bank API unavailability causes a service error

## How this service works

Indicadores econômicos oficiais (Banco Mundial) de qualquer país: crescimento do PIB, inflação, desemprego, população.

## Output

Returns a structured object containing the requested economic indicator value for the specified country, sourced from official World Bank data. Includes the metric name, country code, and the numeric value (e.g. GDP growth percentage, inflation rate, unemployment rate, or population count).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country",
      "metric"
     ],
     "properties": {
      "metric": {
       "type": "string",
       "description": "Um de: gdp_growth, inflation, unemployment, population"
      },
      "country": {
       "type": "string",
       "description": "Código ISO 3166-1 alpha-2 do país (ex: BR, US, DE)"
      }
     }
    }
   },
   "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/agentum-lat-economic-data-472ecd82/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentum.lat](https://www.zero.xyz/host/agentum.lat/llms.txt)
