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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.kakerapetit.dev/v2/screener
| Category | Company and compliance |
|---|---|
| Provider host | api.kakerapetit.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 79 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": 1,
"revenue_gte": 100000000000,
"roe_gte": 5
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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, \u2026); ratio thresholds are percent, money thresholds are currency units.",
"type": "number"
},
"sector": {
"description": "EDINET sector label, e.g. \u8f38\u9001\u7528\u6a5f\u5668 (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"
}