Screen Japanese listed companies by fundamentals from EDINET annual reports
Screen Japanese listed companies by fundamentals from EDINET annual reports. Filter any of 40+ normalized metrics with _gte/_lte query params — revenue, operating income, net income, total assets, roe, roa, operating_margin, equity_ratio (ratio thresholds in percent) — plus sector and accounting standard (JGAAP/IFRS/USGAAP). Returns the latest fiscal year per company with all indicators and ratios. Example: /v2/screener?roe_gte=8&revenue_gte=100000000000. Japan stock screener for agents.
20000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-14
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": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 1,
"revenue_gte": 100000000000,
"roe_gte": 5
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"limit": 1,
"offset": 0,
"results": [
{
"asset_turnover": 1.4073,
"capex": -53294000000,
"capex_disclosure": 59942000000,
"cash_and_deposits": 163820000000,
"cash_end": 155423000000,
"cf_financing": -14126000000,
"cf_investing": -55859000000,
"cf_operating": 78870000000,
"code": "2212",
"consolidated": true,
"cost_of_sales": 883025000000,
"currency": "JPY",
"current_assets": 365470000000,
"current_liabilities": 274156000000,
"current_ratio_pct": 133.31,
"de_ratio": 0.2075,
"depreciation": 43644000000,
"dividends_paid": -8922000000,
"doc_id": "S100XQ5C",
"eps_basic": 206.78,
"eps_diluted": null,
"equity_owners": 459880000000,
"equity_ratio_pct": 49.35,
"fcf": 25576000000,
"filed_at": "2026-03-24 15:00",
"fiscal_year": "FY2025",
"gross_profit": 428404000000,
"income_taxes": 18111000000,
"intangibles": 18112000000,
"interest_bearing_debt": 95432000000,
"inventories": 35176000000,
"market": "jp",
"name": "山崎製パン株式会社",
"name_en": "YAMAZAKI BAKING CO., LTD.",
"net_assets": 510828000000,
"net_income": 43458000000,
"net_income_owners": 40893000000,
"net_margin_pct": 3.12,
"operating_income": 61141000000,
"operating_margin_pct": 4.66,
"ordinary_income": 64314000000,
"period_end": "2025-12-31",
"period_months": 12,
"period_start": "2025-01-01",
"ppe": 371564000000,
"pretax_income": 61569000000,
"revenue": 1311430000000,
"revenue_source": "statement",
"rnd_expense": 9447000000,
"roa_pct": 4.39,
"roe_pct": 8.89,
"sector": "食料品",
"sga": 367263000000,
"standard": "JGAAP",
"total_assets": 931878000000,
"total_liabilities": 421050000000,
"trade_receivables": 149740000000,
"treasury_shares": -55517000000
}
],
"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."
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max rows (default 50, max 100).",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"market": {
"description": "Market segment (default: all; only jp today).",
"enum": [
"jp"
],
"type": "string"
},
"offset": {
"description": "Pagination offset.",
"minimum": 0,
"type": "integer"
},
"revenue_gte": {
"description": "Example metric filter: revenue >= value in JPY.",
"type": "number"
},
"roe_gte": {
"description": "Example metric filter: ROE >= value in percent. Any indicator or ratio column works with a _gte/_lte suffix (revenue_gte, operating_margin_gte, equity_ratio_gte, total_assets_lte, …); ratio thresholds are percent, money thresholds are currency units.",
"type": "number"
},
"sector": {
"description": "EDINET sector label, e.g. 輸送用機器 (transport equipment).",
"type": "string"
},
"standard": {
"description": "Accounting standard.",
"enum": [
"JGAAP",
"IFRS",
"USGAAP"
],
"type": "string"
}
},
"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/screener" # -> 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/screener");
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/screener")
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/3131.json, and this resource appears in /discovery/resources and /discovery/search.