# x402-factory Economic Dashboard Delta

> x402-factory Economic Dashboard Delta is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Returns only the economic data observations that have been printed or revised since a given cursor, enabling efficient incremental polling of US economic dashboard data.

## Facts

- Endpoint: GET https://x402-factory.com/v1/econ/dashboard/delta
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-economic-dashboard-delta-6e7ac793
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jw275G_WQM8yY4Pcz_sLM

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 x402-factory-economic-dashboard-delta-6e7ac793
```

Example prompt: Give me only the US economic observations that have been printed or revised since my last poll — use my cursor 'abc123xyz' to fetch the delta and return the changed count and next cursor.

## When to prefer this

Choose this endpoint when you need to efficiently monitor US economic data for new prints or revisions without re-fetching the entire dashboard. It is ideal for polling loops, trading bots, or alert systems that need incremental updates rather than full snapshots. Prefer the free sibling /v1/econ/dashboard for an initial full load, then switch to this delta endpoint for ongoing incremental sync using the returned cursor.

## Known failure modes

- Invalid or expired cursor returns an error or resets to bootstrap behavior
- Omitting 'since' bootstraps a new cursor rather than fetching historical deltas (expected behavior)
- No changes since last cursor returns empty rows array with changed_count of 0 and a new next_cursor
- Network timeout or server error on $0.015 USDC paid request with no refund
- Cursor string truncated or malformed (minLength 4, maxLength 300) returns validation error

## How this service works

Only the econ observations printed or revised changed since your cursor (delta o — Keyset delta of /v1/econ/dashboard: pass since=<next_cursor from your last call> and get only the econ observations printed or revised added or changed after it, plus changed_count and a new next_cursor. Omit since once to bootstrap. Cursors are stable across restarts. Poll the free sibling…

## Output

Returns a JSON object with a 'rows' array of changed economic observations (each with series name, observation date, latest value, latest vintage, first value, and a boolean revision flag), a 'changed_count' integer, an 'as_of' timestamp, and a 'next_cursor' string for the subsequent incremental poll.

## 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": [],
     "properties": {
      "since": {
       "type": "string",
       "maxLength": 300,
       "minLength": 4,
       "description": "Opaque cursor from a previous next_cursor; omit once to bootstrap a cursor at now"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "rows",
        "changed_count",
        "next_cursor",
        "as_of"
       ],
       "properties": {
        "rows": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "series",
           "obs_date",
           "latest_value",
           "latest_vintage",
           "first_value",
           "revised"
          ],
          "properties": {
           "series": {
            "type": "string"
           },
           "revised": {
            "type": "boolean"
           },
           "obs_date": {
            "type": "string"
           },
           "first_value": {
            "anyOf": [
             {
              "type": "number"
             },
             {
              "type": "null"
             }
            ]
           },
           "latest_value": {
            "anyOf": [
             {
              "type": "number"
             },
             {
              "type": "null"
             }
            ]
           },
           "latest_vintage": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "as_of": {
         "type": "string"
        },
        "next_cursor": {
         "type": "string"
        },
        "changed_count": {
         "type": "integer",
         "maximum": 9007199254740991,
         "minimum": 0
        }
       },
       "additionalProperties": false
      },
      "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-economic-dashboard-delta-6e7ac793/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
