# EDINET Japan Corporate Earnings Filings Feed

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

Returns the latest Japanese corporate securities filings (annual/quarterly reports) from EDINET with XBRL download URLs, refreshed every 4 hours

## Facts

- Endpoint: GET https://oracle-network-jp-data.fly.dev/v1/jp/edinet/earnings
- Price: $0.005/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-fbf0519a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFwYAcfq9hAxhlvNmkSXD

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-fbf0519a
```

Example prompt: Can you pull the latest Japanese corporate earnings filings from EDINET — I want to see which companies have recently submitted annual or quarterly securities reports and get their XBRL download links?

## When to prefer this

Use this endpoint when you need a regularly-refreshed, pre-aggregated feed of recent Japanese corporate securities filings from EDINET, especially when you need XBRL URLs for structured financial data extraction. Prefer this over scraping EDINET directly when you want a low-latency, agent-friendly JSON response. Best suited for monitoring recent filings rather than historical lookups.

## Known failure modes

- EDINET upstream unavailability may cause stale or missing data
- Empty filings array if no new reports submitted in the current refresh window
- HTTP 402 Payment Required if x402 micropayment not processed correctly
- Network timeout if fly.dev instance is cold-starting
- Malformed XBRL URLs if EDINET changes its document storage structure

## How this service works

Japan-focused authoritative source for recent corporate earnings filings via EDINET (Financial Services Agency disclosure system), for AI agents tracking Japanese listed-company financial reports. Returns latest annual/quarterly securities reports (有価証券報告書/四半期報告書) with XBRL download URLs. Refreshed every 4 hours.

## Output

A JSON object containing a date-stamped list of recent EDINET filings, each with document ID (docID), EDINET code, filer name, document type code (e.g. 120=quarterly, 140=annual), document description, XBRL URL for download, and submission timestamp — along with a total count and source attribution. Data is refreshed every 4 hours.

## 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": {
         "date": {
          "type": "string",
          "format": "date"
         },
         "type": {
          "type": "string",
          "const": "edinet-earnings"
         },
         "count": {
          "type": "integer",
          "minimum": 0
         },
         "source": {
          "type": "string"
         },
         "filings": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "docID": {
             "type": "string"
            },
            "xbrlUrl": {
             "type": "string",
             "format": "uri"
            },
            "filerName": {
             "type": "string"
            },
            "edinetCode": {
             "type": "string"
            },
            "docTypeCode": {
             "type": "string",
             "description": "120=四半期報告書, 130=半期報告書, 140=年次有価証券報告書 etc"
            },
            "docDescription": {
             "type": "string"
            },
            "submitDateTime": {
             "type": "string"
            }
           }
          }
         },
         "attribution": {
          "type": "string"
         }
        }
       },
       "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-fbf0519a/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)
