# AgentDatum Global Economic Bundle

> AgentDatum Global Economic Bundle is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns combined GDP, inflation, trade, industry, and employment data for the US, EU, and China in a single API call

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/global/bundle
- 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/agentdatum-global-economic-bundle-2193dd86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XhGIY24RuQspViuQAMbZ8

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 agentdatum-global-economic-bundle-2193dd86
```

Example prompt: Give me a full economic snapshot covering GDP, inflation, trade, and employment for the US, EU, and China all at once — I want to compare the three major economies side by side.

## When to prefer this

Choose this endpoint when you need economic indicators for all three major global economies (US, EU, China) simultaneously and want to avoid making three separate API calls. It is the most cost-efficient option at $0.299 vs the ~$0.68 cost of buying US, EU, and China endpoints separately. Prefer this for cross-continent macro comparisons, global economic briefings, investment research spanning multiple regions, or any workflow where all three economies are relevant. If you only need data for a single country or region, use the individual country endpoints instead.

## Known failure modes

- HTTP 402 Payment Required if USDC payment is not attached or insufficient
- HTTP 429 rate limiting if called too frequently
- Stale or delayed data if underlying economic data sources have not been updated
- Empty or partial response if one of the three regional data sources is temporarily unavailable
- Network timeout if the aggregation of three data sources takes too long

## How this service works

🌍 GLOBAL ECONOMIC BUNDLE — US + EU + China in one call. GDP, inflation, trade, industry, employment for the world's three largest economies. Save 56% vs buying separately. The only cross-continent economic endpoint on any x402 marketplace. 💎【付款后立得】实时结构化JSON，即插即用——无需注册，USDC一键支付即取数据。

## Output

A structured JSON response containing macroeconomic indicators (GDP, GDP growth, CPI inflation, trade balance, unemployment rate, population, manufacturing share, services sector, exports) for the United States, European Union, and China consolidated into a single response payload.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "eu_gdp_eur_trillions": 18.5,
  "us_gdp_usd_trillions": 29.4,
  "china_gdp_usd_trillions": 18.5,
  "combined_share_world_gdp_pct": 62
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdatum-global-economic-bundle-2193dd86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
