# Japan Financial Statements (EDINET Official) (`minako-ph/japan-edinet-financials`) Actor

Normalized balance sheet, P\&L and cash-flow figures of Japanese listed companies from the official EDINET API. English JSON with source element IDs.

- **URL**: https://apify.com/minako-ph/japan-edinet-financials.md
- **Developed by:** [Minako Yamamoto](https://apify.com/minako-ph) (community)
- **Categories:** Developer tools, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 1,000 financial statement records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Japan Financial Statements (EDINET Official)

Normalized **balance sheet, income statement and cash-flow** figures of Japanese listed companies, in English, from the **official EDINET API** (Japan's Financial Services Agency disclosure system). One JSON record per annual securities report, with figures in raw JPY, both Japan GAAP and IFRS filers supported, and **the source XBRL element ID attached to every number** so you can verify each value against the filing. **Official API based — no scraping.** This Actor is the numbers companion to **Japan Company Filings (EDINET Official)**: use that Actor to **discover** filings (metadata, headline KPIs, English summaries), then pass its `doc_id` values here to get the **full normalized three statements** — the two Actors deliberately do not overlap, so you never pay twice for the same fields. Tested against frozen datasets on every release.

### What you get

One JSON item per annual report. Excerpt of a real item (the full item also includes the complete `prior_year` income statement / cash flow and one `element_map` entry per non-null value, prior year included):

```json
{
  "doc_id": "S100YN9E",
  "edinet_code": "E02385",
  "sec_code": "79850",
  "filer_name_ja": "ネポン株式会社",
  "filer_name_en": "NEPON Inc.",
  "period_start": "2025-04-01",
  "period_end": "2026-03-31",
  "accounting_standard": "jgaap",
  "basis": "consolidated",
  "balance_sheet": {
    "cash_and_deposits": 592590000,
    "current_assets": 4360065000,
    "property_plant_and_equipment": 960418000,
    "intangible_assets": 214045000,
    "investments_and_other_assets": 353130000,
    "non_current_assets": 1527594000,
    "total_assets": 5887660000,
    "current_liabilities": 2598697000,
    "non_current_liabilities": 845538000,
    "total_liabilities": 3444235000,
    "share_capital": 601424000,
    "retained_earnings": 1606358000,
    "equity_attributable_to_owners_of_parent": null,
    "net_assets": 2443424000
  },
  "income_statement": {
    "net_sales": 7417643000,
    "cost_of_sales": 4872682000,
    "gross_profit": 2544960000,
    "selling_general_and_administrative_expenses": 2474363000,
    "operating_income": 70597000,
    "ordinary_income": 78608000,
    "income_before_income_taxes": 62533000,
    "income_taxes": 24796000,
    "net_income": 37737000,
    "net_income_attributable_to_owners_of_parent": 37737000
  },
  "cash_flow": {
    "net_cash_provided_by_operating_activities": 385755000,
    "net_cash_provided_by_investing_activities": -120003000,
    "net_cash_provided_by_financing_activities": -185304000,
    "cash_and_cash_equivalents_end": 565590000
  },
  "prior_year": {
    "balance_sheet": { "total_assets": 6068175000, "net_assets": 2377042000 },
    "income_statement": { "net_sales": 7277473000, "net_income": -283546000 },
    "cash_flow": { "net_cash_provided_by_operating_activities": 170882000 }
  },
  "element_map": {
    "balance_sheet.total_assets": "jppfs_cor:Assets",
    "income_statement.net_sales": "jppfs_cor:NetSales",
    "cash_flow.net_cash_provided_by_operating_activities": "jppfs_cor:NetCashProvidedByUsedInOperatingActivities"
  },
  "coverage": { "mapped_fields": 27, "target_fields": 28 },
  "source": "edinet",
  "source_url": "https://api.edinet-fsa.go.jp/api/v2/documents/S100YN9E?type=5",
  "attribution": "出典：金融庁 EDINET",
  "schema_version": "0.1.0"
}
````

All figures are normalized to **raw JPY** from EDINET's official CSV output (type=5). `basis` tells you whether figures are consolidated or parent-only — the two are never mixed within one record. `accounting_standard` is derived deterministically from the taxonomy of the adopted elements (`jgaap` / `ifrs`). Field mapping is a fixed, hand-verified candidate list — **no LLM is involved anywhere**, values the filing does not report are `null`, never guessed, and `element_map` + `coverage` let you (or your agent) machine-verify every number against the source.

### How to use

1. Paste EDINET document IDs into `doc_ids` — for example straight from the `doc_id` field of the Japan Company Filings Actor. The prefilled IDs (one Japan GAAP consolidated filer, one IFRS filer) return results in seconds.
2. Or leave `doc_ids` empty and pick a submission-date range (`date_from` / `date_to`, up to 31 days, optionally filtered by `edinet_codes` / `sec_codes`) to process all annual reports submitted in the range.
3. Read the results from the default dataset as JSON, CSV, or Excel.

### What this does NOT do

- **Not a full XBRL parser.** Figures are limited to the facts included in EDINET's official CSV output (type=5). For the complete fact set, download the XBRL packages from EDINET.
- **Industry-specific statement formats** (banks, securities firms, insurers, etc.) can leave major items `null` — e.g. insurers under IFRS 17 report no `net_sales`/`gross_profit` line. Known coverage measured on real filings: standard Japan GAAP filers ≈26–27 of 28 fields, standard IFRS filers ≈26, insurance-format IFRS ≈17. `coverage` reports the per-record reality.
- **US-GAAP filers are out of scope.** A small number of Japanese companies (mostly historically NYSE-listed firms) still file under US-GAAP. This Actor maps Japan GAAP and IFRS taxonomies only; a US-GAAP annual report is not rejected, but its financial fields come back `null` with `accounting_standard: null` and `coverage.mapped_fields: 0`. Check `accounting_standard` before relying on the numbers. (Note: such a document is still a billable `record-basic`, since it is a valid annual report.)
- **Fund disclosures are out of scope** (excluded in date-range runs; passing a fund doc\_id yields an explicit non-billable error row).
- **Semi-annual reports (docTypeCode 160) are not supported** in v1 — annual securities reports (120, and 130 amendments when requested) only.
- **Prior-year figures are as restated in the current report** — they come from the same CSV's prior-year context, not from the previous year's original filing.
- Reference data, **not investment advice**.

### Pricing

Pay-per-event, fully transparent:

| Event                       | Price                                                        |
| --------------------------- | ------------------------------------------------------------ |
| Actor start                 | $0.02                                                        |
| Financial statements record | $0.03 — one company × one annual report, prior year included |

Free allowance: **the first 3 documents of every run are free** — enough to evaluate the output. Error rows (document not found, non-annual-report doc\_ids, no CSV data) are never charged. If your run hits the maximum charge limit you set, the Actor stops gracefully and keeps the partial results.

### Data source & attribution

Data comes from the [EDINET API](https://disclosure2.edinet-fsa.go.jp/) operated by Japan's Financial Services Agency. Attribution included with every item: 出典：金融庁 EDINET (Source: Financial Services Agency, EDINET). This Actor is independent and is not endorsed by the FSA.

### More Japan data Actors

- [**Japan Company Filings (EDINET Official)**](https://apify.com/minako-ph/japan-edinet-filings) — discover filings: submission metadata, headline KPIs (7 values), optional English summaries. Feed its `doc_id` output into this Actor.
- Part of a family of official-API-based Japan data Actors (subsidies & grants, real estate transaction prices, company enrichment, laws & regulations). See the developer profile for the full list.

### Contact

Found an issue or need a statement line that EDINET's CSV provides but this Actor doesn't expose yet? Open a ticket on the **Issues** tab — first response within 48 hours.

# Actor input Schema

## `doc_ids` (type: `array`):

EDINET document IDs of annual securities reports (docTypeCode 120/130), e.g. from the doc\_id field of the Japan Company Filings (EDINET Official) Actor. Takes precedence over the date range. Up to 500 per run.

## `date_from` (type: `string`):

Start of the submission-date range (YYYY-MM-DD). Used only when doc\_ids is empty; annual securities reports submitted in the range are processed.

## `date_to` (type: `string`):

End of the submission-date range (YYYY-MM-DD), inclusive. Up to 31 days are scanned and up to 500 matching documents are processed per run.

## `edinet_codes` (type: `array`):

With the date range: only keep filings by these EDINET filer codes (e.g. E02385).

## `sec_codes` (type: `array`):

With the date range: only keep filings by these securities codes (e.g. 79850 for 7985).

## `include_amendments` (type: `boolean`):

With the date range: also include amended annual reports (document type 130).

## Actor input object example

```json
{
  "doc_ids": [
    "S100YN9E",
    "S100YN95"
  ],
  "include_amendments": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "doc_ids": [
        "S100YN9E",
        "S100YN95"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("minako-ph/japan-edinet-financials").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "doc_ids": [
        "S100YN9E",
        "S100YN95",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("minako-ph/japan-edinet-financials").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "doc_ids": [
    "S100YN9E",
    "S100YN95"
  ]
}' |
apify call minako-ph/japan-edinet-financials --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=minako-ph/japan-edinet-financials",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Japan Financial Statements (EDINET Official)",
        "description": "Normalized balance sheet, P&L and cash-flow figures of Japanese listed companies from the official EDINET API. English JSON with source element IDs.",
        "version": "0.1",
        "x-build-id": "HCUA2c8sI8LyMei3X"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/minako-ph~japan-edinet-financials/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-minako-ph-japan-edinet-financials",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/minako-ph~japan-edinet-financials/runs": {
            "post": {
                "operationId": "runs-sync-minako-ph-japan-edinet-financials",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/minako-ph~japan-edinet-financials/run-sync": {
            "post": {
                "operationId": "run-sync-minako-ph-japan-edinet-financials",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "doc_ids": {
                        "title": "EDINET document IDs (main path)",
                        "type": "array",
                        "description": "EDINET document IDs of annual securities reports (docTypeCode 120/130), e.g. from the doc_id field of the Japan Company Filings (EDINET Official) Actor. Takes precedence over the date range. Up to 500 per run.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "date_from": {
                        "title": "From date (alternative path)",
                        "type": "string",
                        "description": "Start of the submission-date range (YYYY-MM-DD). Used only when doc_ids is empty; annual securities reports submitted in the range are processed."
                    },
                    "date_to": {
                        "title": "To date (alternative path)",
                        "type": "string",
                        "description": "End of the submission-date range (YYYY-MM-DD), inclusive. Up to 31 days are scanned and up to 500 matching documents are processed per run."
                    },
                    "edinet_codes": {
                        "title": "EDINET codes (optional filter)",
                        "type": "array",
                        "description": "With the date range: only keep filings by these EDINET filer codes (e.g. E02385).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sec_codes": {
                        "title": "Securities codes (optional filter)",
                        "type": "array",
                        "description": "With the date range: only keep filings by these securities codes (e.g. 79850 for 7985).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "include_amendments": {
                        "title": "Include amendments",
                        "type": "boolean",
                        "description": "With the date range: also include amended annual reports (document type 130).",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
