# MacroPulse US GDP & Economic Revision Trail

> MacroPulse US GDP & Economic Revision Trail is a paid API for AI agents from macropulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns the full, immutable on-chain revision history for US macroeconomic series (GDP, PCE, RFS, SOFR) — every BEA estimate print, its timestamp, and the delta from the prior revision.

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/macro/us-revisions
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-us-gdp-economic-revision-trail-fbcc1c35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YHiAEVW-V5CbXXMlO-Qcq

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 macropulse-us-gdp-economic-revision-trail-fbcc1c35
```

Example prompt: Can you pull the full revision trail for US GDP — I want to see every BEA print from the advance estimate through the latest revision, when each one landed, and how much it changed each time?

## When to prefer this

Choose this endpoint when you need the full, auditable revision sequence for a US macro series rather than just the latest print — especially when verifying how much an initial estimate was revised, reconstructing the real-time data history for backtesting, or providing on-chain-verifiable proof of each estimate. Prefer this over BEA direct lookups when immutability and timestamped verifiability matter.

## Known failure modes

- Invalid or unsupported series identifier returns an error
- No revision history available yet for a very recent release period
- Network or on-chain data provider outage causes timeout
- Payment of $0.02 USDC not processed results in 402 response

## How this service works

Has US GDP been revised? BEA revises every estimate (advance, second, third); the Chainlink round history records each revision immutably, timestamped. Returns the ordered revision trail: every print, when it landed, the change from the previous, and the total revision. Series: gdp/pce/rfs level+change, sofr. Anyone can say GDP grew 2.1%; this says it was first printed at 1.4%, cut to 0.5%, then revised to 2.1% - each step verifiable on-chain.

## Output

An ordered list of every estimate print for the requested series (GDP, PCE, RFS, or SOFR), each with its release timestamp, the value printed, the change from the prior revision, and the total cumulative revision — all sourced from immutable Chainlink on-chain round history.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "How many prints to walk back, 1-24. Default 8."
  },
  "series": {
   "type": "string",
   "description": "Which series to trace. One of: gdp_level, gdp_change, pce_level, pce_change, rfs_level, rfs_change, sofr. Default gdp_change."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "key": "gdp_change",
  "name": "Real GDP — Percent Change (Annual Rate)",
  "prints": [
   {
    "as_of": "2026-06-25T12:32:41.000Z",
    "value": 2.1,
    "round_id": "36893488147419103237",
    "revision_from_previous": 0.5
   },
   {
    "as_of": "2026-06-11T12:49:51.000Z",
    "value": 1.6,
    "round_id": "36893488147419103236",
    "revision_from_previous": 0
   }
  ],
  "contract": "0xe0eda54fC1362C0d7d0ff855E4fCEA79916Fe094",
  "deterministic": true,
  "latest_vs_first": {
   "first_print": {
    "value": 1.4
   },
   "latest_print": {
    "value": 2.1
   },
   "total_revision": 0.7
  },
  "trail_semantics": "revisions"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-us-gdp-economic-revision-trail-fbcc1c35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from macropulse.theaslangroupllc.com](https://www.zero.xyz/host/macropulse.theaslangroupllc.com/llms.txt)
