# Japan MOF FX Intervention Record API

> Japan MOF FX Intervention Record API is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Retrieves individual yen foreign-exchange intervention operations (date, amount, currency pair) from Japan's Ministry of Finance official record, 1991 to present.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/jp/fx/intervention_record
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japan-mof-fx-intervention-record-api-b365274c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vTwVdm8x7lwfen1EeOBWq

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 japan-mof-fx-intervention-record-api-b365274c
```

Example prompt: Pull the 100 most recent Japan Ministry of Finance yen foreign-exchange intervention records so I can see the dates, amounts, and currency pairs for each operation.

## When to prefer this

Choose this endpoint when you need authoritative, official MOF-sourced records of Japan's yen FX intervention operations with exact dates and amounts, especially for historical analysis from 1991 onward. Prefer over general financial data APIs when you specifically need Japan government intervention data rather than market price data or third-party estimates.

## Known failure modes

- Invalid 'since' date format returns an error — must be ISO date string
- 'limit' outside 1-500 range may be rejected or clamped
- No results returned for date ranges with no recorded interventions (not an error, just an empty list)
- Payment failure via x402 if insufficient USDC balance
- Network timeout for very large result sets

## How this service works

Individual yen foreign-exchange intervention operations (date, amount, currency pair) from the Ministry of Finance's official record, 1991-present. Quarters with no intervention are simply absent from the list rather than zero-padded. Factual published data only; not investment advice or a signal to trade on.

## Output

A list of individual FX intervention operation records from Japan's Ministry of Finance, each containing the date of the operation, the monetary amount intervened, and the currency pair involved. Quarters with no intervention are absent from results rather than zero-padded. Results are returned most-recent-first and can be filtered by a lower-bound date and limited in count.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "description": "1-500, default 50 (most recent first)"
      },
      "since": {
       "type": "string",
       "description": "optional ISO date lower bound"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-mof-fx-intervention-record-api-b365274c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
