Discover/Go API
live

Go APIdisclosure2.edinet-fsa.go.jp

Retrieve Japanese FSA EDINET disclosure metadata, search filings by keyword or securities code, and fetch temporary PDF links via 4 structured endpoints.

Endpoint health
verified 5d ago
get_announcements
get_document_metadata
2/2 passing latest checkself-healing
Endpoints
4
Updated
16d ago

What is the Go API?

The EDINET API provides access to Japan's FSA disclosure portal through 4 endpoints, returning structured data on company filings, document metadata, and regulatory announcements. The get_document_metadata endpoint resolves a document management number (SHORUI_KANRI_NO) into fields like EDINET code, corporate number (JCN), company name, and document title. Combined with search_documents and get_pdf_link, it covers the full workflow from discovery to document retrieval.

Try it

No input parameters required.

api.parse.bot/scraper/c249f34c-f3c6-4f34-b359-699038bb5992/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c249f34c-f3c6-4f34-b359-699038bb5992/get_announcements' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace disclosure2-edinet-fsa-go-jp-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


from parse_apis.Japan_EDINET__FSA__API import Edinet, Document, Announcement, DocumentNotFound

edinet = Edinet()

# List current announcements from the EDINET top page
for announcement in edinet.announcements.list(limit=5):
    print(announcement.title, announcement.summary)

# Fetch metadata for a specific disclosure document by management number
doc = edinet.documents.get(doc_id="S100XLSD")
print(doc.company_name, doc.edinet_code, doc.jcn, doc.title)

# Refresh a document to get latest metadata
refreshed = doc.refresh()
print(refreshed.raw_head, refreshed.doc_id)

# Handle a document that doesn't exist
try:
    missing = edinet.documents.get(doc_id="S000ZZZZ")
    print(missing.title)
except DocumentNotFound as exc:
    print(f"Document not found: {exc.doc_id}")

print("exercised: announcements.list / documents.get / document.refresh / DocumentNotFound")
All endpoints · 4 totalmissing one? ·

Get site announcements and notices from the EDINET top page. Returns regulatory notices, advisories, and important updates published by the FSA. Each announcement includes a title and a summary excerpt. Some items include external URLs to FSA resources.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of announcement objects with title (string), summary (string, optional), and url (string, optional)"
  },
  "sample": {
    "data": {
      "items": [
        {
          "title": "EDINETをご利用の方へ",
          "summary": "2026年6月17日..."
        },
        {
          "url": "https://www.fsa.go.jp/receipt/d_hotline/index.html",
          "title": "開示義務違反等に係る情報をお持ちの方はこちらへ (ディスクロジャー・ホットライン)"
        }
      ]
    },
    "status": "success"
  }
}

About the Go API

Document Metadata and Search

The get_document_metadata endpoint accepts a doc_id — an alphanumeric management number such as S100XLSD — and returns six fields: company_name, edinet_code (6-character submitter code), jcn (corporate number / 法人番号), title, doc_id, and raw_head (the full header text from the document detail page). This is the core lookup for resolving a known document ID into structured company and filing information.

The search_documents endpoint accepts an optional query string (keyword or securities code), an optional page integer for pagination, and a period parameter where 1 means today, 6 means the past year, and 7 returns all available filings. It returns a total count and an items array of document objects. Note that this endpoint is highly sensitive to session state and may return a 440 Session Expired error; callers should treat that status code explicitly.

PDF Access and Announcements

The get_pdf_link endpoint takes a doc_id_encrypt value — the encrypted document ID (SHORUI_KANRI_NO_ENCRYPT) surfaced in search_documents results — and returns a pdf_sas_url: a temporary Azure SAS URL pointing directly to the filing PDF. These URLs are time-limited and not suitable for long-term storage. Plan to fetch them on-demand close to the time of use.

The get_announcements endpoint requires no input and returns an items array of objects, each with a title and url, representing notices from the EDINET top page — including regulatory notices and disclosure hotline links. This is useful for monitoring portal-level changes that may affect filing availability or system behavior.

Reliability & maintenanceVerified

The Go API is a managed, monitored endpoint for disclosure2.edinet-fsa.go.jp — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when disclosure2.edinet-fsa.go.jp changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official disclosure2.edinet-fsa.go.jp API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Resolve EDINET document IDs to company names and corporate numbers for filing databases
  • Search for all disclosures submitted by a specific securities code within the past year
  • Retrieve temporary PDF links for annual reports and securities registration statements
  • Monitor EDINET site announcements to detect portal maintenance or regulatory notices
  • Build a Japanese corporate filing tracker using EDINET codes and JCN identifiers
  • Paginate through recent disclosures to ingest today's filings into a downstream pipeline
  • Cross-reference JCN (法人番号) from filing metadata with other Japanese company databases
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does EDINET have an official developer API?+
Yes. The Japan FSA publishes an official EDINET API at https://disclosure2dl.edinet-fsa.go.jp/guide/static/disclosure/EDINET-API_v2.pdf. It covers document list retrieval and document download by submission date. This Parse API surfaces document metadata, keyword search, and PDF link retrieval from the portal interface, which differs in scope from the official document-list API.
What does `search_documents` return, and how does the `period` parameter work?+
It returns a total integer and an items array of document objects matching the query. The period parameter controls the submission date range: 1 limits results to today, 6 covers the past year, and 7 retrieves all available filings regardless of date. The query field accepts either a free-text keyword or a securities code.
Why does `search_documents` sometimes return a 440 error?+
The EDINET portal is session-sensitive, and a 440 status indicates the session has expired. This is a documented limitation of the endpoint. Treat 440 as a retryable error with a short delay rather than a permanent failure.
Are the PDF URLs from `get_pdf_link` permanent?+
No. The pdf_sas_url field is a temporary Azure SAS URL. These URLs expire after a short window, so they are not suitable for storing as permanent references. Fetch them immediately before accessing the PDF rather than caching them.
Does the API return the full text content of filings or attachment files beyond the main PDF?+
Not currently. The API returns document metadata fields (company_name, edinet_code, jcn, title) and a temporary PDF link for the primary document. Inline document body text, XBRL data files, and secondary attachments are not exposed. You can fork this API on Parse and revise it to add an endpoint that retrieves those additional file types using the encrypted document ID.
Page content last updated . Spec covers 4 endpoints from disclosure2.edinet-fsa.go.jp.
Related APIs in Government PublicSee all →
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
sedarplus.ca API
sedarplus.ca API
annualreports.com API
Search for and access thousands of international company annual reports in PDF and HTML formats, while filtering by ticker, exchange, industry, sector, company size, and location. Browse company profiles and financial documents across different markets and industries to find the information you need.
bundesanzeiger.de API
Search and retrieve official German business announcements, financial disclosures, and company filings from the Bundesanzeiger with full-text search and category filtering. Access detailed publication information and financial reports to monitor corporate announcements and regulatory filings.
13f.info API
13f.info API
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.
finra.org API
Search FINRA disciplinary actions and BrokerCheck records to verify the background, credentials, and regulatory history of broker firms and individual financial professionals. Look up broker information alphabetically or by specific criteria to research potential advisors and ensure they have a clean compliance record.
jdih.kemenkeu.go.id API
Search and retrieve Indonesian Ministry of Finance legal documents with detailed information including document types, metadata, and downloadable files. Browse legal products by category and access comprehensive details about regulations, policies, and official legal materials from Indonesia's financial authority.