# EDINET Filing Calendar — Japanese Annual Securities Reports

> EDINET Filing Calendar — Japanese Annual Securities Reports is a paid API for AI agents from api.kakerapetit.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a list of Japanese listed companies that filed annual securities reports (yukashoken hokokusho) with EDINET within a specified date range, including company code, document ID, fiscal period, accounting standard, and filing timestamp.

## Facts

- Endpoint: GET https://api.kakerapetit.dev/v2/calendar
- 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/edinet-filing-calendar-japanese-annual-securities-reports-4a29c8fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-B0GJZ0lyxPbp3MT0zqmT

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 edinet-filing-calendar-japanese-annual-securities-reports-4a29c8fb
```

Example prompt: Show me all the Japanese annual securities reports filed on EDINET between June 20 and June 30, 2026 — I want the company codes, document IDs, fiscal periods, and whether each company uses JGAAP, IFRS, or US GAAP.

## When to prefer this

Use this endpoint when you need to discover or monitor new EDINET annual securities report (yukashoken hokokusho) filings by Japanese listed companies within a specific date range — ideal for triggering downstream data pipelines, building disclosure calendars, or identifying which stocks just reported. Prefer this over company-specific endpoints when you don't know which companies filed and want to sweep a time window.

## Known failure modes

- Date range exceeds 92 days — request will be rejected; split into smaller windows
- Invalid ISO date format for 'from' or 'to' parameters — returns validation error
- No filings found for the specified date range — returns empty list
- Future date range with no filings yet — returns empty list
- Payment failure via x402 protocol — request blocked before processing

## How this service works

EDINET filing calendar: annual securities reports (yukashoken hokokusho) filed by Japanese listed companies in a date range. Returns company code, EDINET document ID, fiscal period, accounting standard (JGAAP/IFRS/USGAAP) and the exact filing timestamp for each report — track new disclosures, trigger data pipelines, or find which Japanese stocks just reported. Query: /v2/calendar?from=2026-06-20&to=2026-06-30 (max 92 days per request).

## Output

A list of annual securities report filings submitted to EDINET within the requested date range. Each entry includes the company code, EDINET document ID, fiscal period covered, accounting standard used (JGAAP, IFRS, or USGAAP), and the exact UTC timestamp of the filing. The query window is capped at 92 days per request.

## 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": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "format": "date",
       "description": "Range end, ISO date (inclusive, max 92 days after from)."
      },
      "from": {
       "type": "string",
       "format": "date",
       "description": "Range start, ISO date (inclusive, filing date)."
      },
      "market": {
       "enum": [
        "jp"
       ],
       "type": "string",
       "description": "Market segment (default: all; only jp today)."
      }
     }
    }
   },
   "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/edinet-filing-calendar-japanese-annual-securities-reports-4a29c8fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kakerapetit.dev](https://www.zero.xyz/host/api.kakerapetit.dev/llms.txt)
