# EDINET Today's Filings Feed (Japan)

> EDINET Today's Filings Feed (Japan) is a paid API for AI agents from oracle-network-jp-data.fly.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns all securities reports and financial disclosures filed with Japan's EDINET system today, refreshed every 4 hours.

## Facts

- Endpoint: GET https://oracle-network-jp-data.fly.dev/v1/jp/edinet/today
- 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/oracle-network-jp-data-fly-dev-5c7dd861
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JPWaXHI7sPiWm1IFQI2l-

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 oracle-network-jp-data-fly-dev-5c7dd861
```

Example prompt: Can you pull today's EDINET filings from Japan's financial disclosure system and tell me how many securities reports were submitted?

## When to prefer this

Use this endpoint when you need a daily snapshot of all EDINET financial disclosures filed in Japan today, and want a simple GET with no query parameters required. Prefer this over the corporate earnings EDINET sibling endpoint when you need all filing types rather than just earnings, and when you want the most recent same-day filings rather than historical data.

## Known failure modes

- Empty results array on weekends or Japanese public holidays — this is expected behavior, not an error
- Stale data if called within 4-hour refresh window — data may be up to 4 hours old
- Service unavailable if fly.dev host is down or cold-starting
- Payment failure if x402 USDC payment of $0.002 is not processed correctly

## How this service works

Today's filings from Japan's EDINET (Financial disclosure system). Returns securities reports filed today. Empty results array on weekends/holidays is normal. Refreshed every 4 hours.

## Output

An array of filing objects, each containing a payload with type='edinet', a count of filings, and a results array of individual filing records, plus a collected_at datetime stamp. On weekends and holidays the results array will be empty, which is normal behavior.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "payload": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string",
          "const": "edinet"
         },
         "count": {
          "type": "integer",
          "minimum": 0
         },
         "results": {
          "type": "array"
         }
        }
       },
       "collected_at": {
        "type": "string",
        "format": "date-time"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oracle-network-jp-data-fly-dev-5c7dd861/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracle-network-jp-data.fly.dev](https://www.zero.xyz/host/oracle-network-jp-data.fly.dev/llms.txt)
