# FX Monitor Bundled Workflow

> FX Monitor Bundled Workflow is a paid API for AI agents from agent402.tools, paid per call via x402, $0.009/call, status unknown (last checked 2026-09-15).

Executes a bundled FX monitoring workflow in a single call, returning EUR/USD, GBP/USD, and JPY/USD spot rates plus a full FX dashboard and historical data via one x402 payment.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/fx-monitor
- Price: $0.009/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fx-monitor-bundled-workflow-7880f2a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TSuDxPNZrsgnLpprILJ9F

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 fx-monitor-bundled-workflow-7880f2a6 -d '<json body>'
```

Example prompt: Give me a full FX snapshot right now — I want EUR/USD, GBP/USD, and JPY/USD spot rates plus the dashboard and historical context all in one shot.

## When to prefer this

Choose this endpoint when you need a comprehensive FX snapshot covering spot rates, a dashboard view, and historical data for EUR, GBP, and JPY against USD in a single call and payment. It is more cost-efficient than calling fx-rate, fx-dashboard, and fx-historical separately. Prefer it when you want partial-success handling so individual tool failures do not block the entire workflow.

## Known failure modes

- Payment failure: x402 payment rejected or insufficient USDC balance
- Partial failure: one or two of the three underlying tools (fx-rate, fx-dashboard, fx-historical) fail while others succeed
- Upstream FX data provider unavailable: rates cannot be fetched
- Malformed request body: missing required input fields causing 4xx error
- Rate limiting or quota exceeded on underlying data sources

## How this service works

Bundled execution of the FX monitor workflow - Major currency snapshot: EUR/USD, GBP/USD, JPY/USD rates plus the full FX dashboard in one call. One x402 payment runs 3 underlying tools (fx-rate, fx-dashboard, fx-historical); partial-success per step.

## Output

Returns three sub-results from a single payment: (1) spot rates for EUR/USD, GBP/USD, and JPY/USD from the fx-rate tool, (2) a full FX dashboard from the fx-dashboard tool, and (3) historical FX data from the fx-historical tool. Results are delivered per-step with partial-success semantics, meaning some steps may succeed even if others fail.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "pack",
      "args",
      "steps",
      "summary"
     ],
     "properties": {
      "args": {
       "type": "object"
      },
      "pack": {
       "type": "string"
      },
      "steps": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ok": {
          "type": "boolean"
         },
         "slug": {
          "type": "string"
         },
         "result": {
          "type": "object"
         }
        }
       }
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {},
  "pack": "fx-monitor",
  "steps": [
   {
    "ok": true,
    "slug": "fx-rate",
    "result": {}
   },
   {
    "ok": true,
    "slug": "fx-dashboard",
    "result": {}
   },
   {
    "ok": true,
    "slug": "fx-historical",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fx-monitor-bundled-workflow-7880f2a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
