# EDINET Corporate Disclosure Filings List (Japan FSA / TSE)

> EDINET Corporate Disclosure Filings List (Japan FSA / TSE) is a paid API for AI agents from jp-data-api-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a daily list of corporate disclosure filings submitted to EDINET (Japan's electronic securities filing system), including annual reports, quarterly earnings, and large-shareholding notifications for TSE-listed companies.

## Facts

- Endpoint: GET https://jp-data-api-production.up.railway.app/filings/list
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edinet-corporate-disclosure-filings-list-japan-fsa-tse-0e18301e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7ZeWnWGsMKhVQsmByLVyL

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-corporate-disclosure-filings-list-japan-fsa-tse-0e18301e
```

Example prompt: Pull the full list of EDINET corporate disclosure filings submitted on 2024-11-15 — I want to see which TSE-listed companies filed annual securities reports, quarterly earnings, or large-shareholding notices that day.

## When to prefer this

Use this endpoint when you need a structured, English-friendly daily snapshot of all EDINET filings for Japan FSA and TSE-listed companies. Ideal for systematic equity research workflows, activist investor surveillance, M&A monitoring, or building filing alert systems for Japanese stocks. Prefer over manual EDINET portal queries when English field names, machine-readability, and per-date batch retrieval are needed.

## Known failure modes

- Missing or malformed 'date' query parameter returns a validation error
- Date with no filings (weekends, public holidays) may return an empty list
- Future dates or very old historical dates may return no data
- Non-business days for TSE may yield sparse or empty results
- API returns HTTP 402 if payment header is missing or invalid

## How this service works

Japanese stock market fundamental research: daily list of corporate disclosures from EDINET (Japan FSA / Tokyo Stock Exchange listed companies). Annual securities reports, quarterly earnings reports, large shareholding (5% rule) filings. Use for Japan equity research, TSE stock analysis, Nikkei companies due diligence, M&A monitoring, activist investor tracking. English field names with docId, ticker (securities code), filing type, dates.

## Output

A list of corporate disclosure filings for the specified date, each record containing a docId, ticker/securities code, filing type (e.g. annual securities report, quarterly report, large shareholding), company name, and relevant dates (filing date, report period). Fields are in English. Useful for equity research, activist investor tracking, and M&A monitoring.

## 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": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "YYYY-MM-DD"
      }
     }
    }
   },
   "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-corporate-disclosure-filings-list-japan-fsa-tse-0e18301e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jp-data-api-production.up.railway.app](https://www.zero.xyz/host/jp-data-api-production.up.railway.app/llms.txt)
