https://api.cdp.coinbase.com/platform/v2/x402).
Discovery: /.well-known/x402 |
agent.json |
OpenAPI spec |
llms.txt
Combined US economic digest. A single API call returns all six major US macroeconomic indicators: Consumer Price Index (CPI), civilian unemployment rate, nominal GDP, effective federal funds rate, nonfarm payrolls, and average hourly earnings. Includes AI-generated synthesis commentary covering the overall US macroeconomic picture.
This is the preferred endpoint for agents needing a full US macro picture in a single request rather than calling six separate endpoints. At $0.01 USDC it is more cost-efficient than calling individual endpoints for all six indicators.
This endpoint is designed for AI agents. Typical callers include:
{
"country": "US",
"source": "FRED + BLS",
"cpi": { "value": 314.222, "mom_change": 0.241, "series": [...] },
"unemployment":{ "value": 4.2, "mom_change": -0.1, "series": [...] },
"gdp": { "value": 28500.0, "qoq_change": 2.1, "series": [...] },
"fed_rate": { "value": 4.33, "series": [...] },
"jobs": { "value": 158200, "mom_change": 175, "series": [...] },
"wages": { "value": 35.82, "mom_change": 0.31, "series": [...] },
"commentary": "US economy in April 2026 shows..." // AI synthesis
}
GET https://globalapi.dev/us/economics — $0.01 USDC via x402
payment-required header containing base64-encoded payment instructionspayment-signature headerCompatible client libraries: @x402/client (TypeScript), x402-python (Python).