EDINET filing calendar: annual securities reports (yukashoken hokokusho) filed by Japanese
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).
2000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-17
updated
Provider
api.kakerapetit.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3a43FdF92B1596B22DDF719d5b528c537Da4237d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"from": "2026-06-20",
"to": "2026-06-30"
},
"type": "http"
},
"output": {
"example": {
"count": 2,
"filings": [
{
"code": "8334",
"currency": "JPY",
"doc_id": "S100Y8O1",
"filed_at": "2026-06-20 15:00",
"market": "jp",
"period_end": "2026-03-31",
"period_start": "2025-04-01",
"standard": "JGAAP",
"type": "annual_securities_report"
},
{
"code": "7974",
"currency": "JPY",
"doc_id": "S100Y9NX",
"filed_at": "2026-06-25 15:30",
"market": "jp",
"period_end": "2026-03-31",
"period_start": "2025-04-01",
"standard": "JGAAP",
"type": "annual_securities_report"
}
],
"from": "2026-06-20",
"source": {
"attribution": "出典:EDINET閲覧(提出)サイト(https://disclosure2dl.edinet-fsa.go.jp/)、PDL1.0",
"attribution_en": "Source: EDINET, Financial Services Agency of Japan (PDL 1.0). Processed and normalized by api.kakerapetit.dev."
},
"to": "2026-06-30"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"from": {
"description": "Range start, ISO date (inclusive, filing date).",
"format": "date",
"type": "string"
},
"market": {
"description": "Market segment (default: all; only jp today).",
"enum": [
"jp"
],
"type": "string"
},
"to": {
"description": "Range end, ISO date (inclusive, max 92 days after from).",
"format": "date",
"type": "string"
}
},
"required": [
"from",
"to"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.kakerapetit.dev/v2/calendar" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.kakerapetit.dev/v2/calendar");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.kakerapetit.dev/v2/calendar")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3129.json, and this resource appears in /discovery/resources and /discovery/search.