Rank Japanese listed companies by any financial metric from EDINET annual report
Rank Japanese listed companies by any financial metric from EDINET annual reports: roe, roa, revenue, operating_income, net_income, total_assets, equity_ratio, fcf and 30+ more. Returns the top or bottom N companies on the latest fiscal year, each with the full normalized indicator row and filing provenance. Example: /v2/rankings?metric=roe&order=desc&limit=10. League tables and factor screens for Japanese stocks in an EDGAR-style unified schema.
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/rankings
| 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
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"limit": 2,
"metric": "roe",
"order": "desc"
},
"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"
},
"metric": {
"description": "Metric column to rank by (whitelisted): any indicator (revenue, total_assets, \u2026) or ratio (roe, roa, operating_margin, equity_ratio, de_ratio, asset_turnover, fcf).",
"type": "string"
},
"order": {
"description": "Sort direction (default \"desc\").",
"enum": [
"desc",
"asc"
],
"type": "string"
}
},
"required": [
"metric"
],
"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"
}