XBRL-parsed financials for 4,125+ Japanese companies via REST API. Exact data from official filings.
import requests
# Toyota Motor — fiscal year 2024
resp = requests.get(
"https://api.axiora.dev/v1/companies/E02144/financials",
headers={"Authorization": "Bearer ax_live_..."}
)
data = resp.json()["data"][0]
print(data["revenue"]) # 29929992000000
print(data["net_income"]) # 4944933000000
Every endpoint returns { data, meta }. Keyset pagination, request IDs, consistent error shapes.
{
"data": [{
"edinet_code": "E02144",
"fiscal_year": 2024,
"revenue": 29929992000000,
"operating_income": 5352934000000,
"net_income": 4944933000000,
"total_assets": 90114296000000,
"currency": "JPY",
"source_doc_id": "S100TC8Q"
}],
"meta": {
"total": 3,
"limit": 50,
"next_cursor": null,
"request_id": "req_8f2a3b..."
}
}Every number from structured XBRL tags in annual and quarterly securities reports filed with EDINET. No OCR, no AI extraction. Toyota reports ¥30T revenue — you get ¥29,929,992,000,000.
Every company on EDINET with parsed financials. Mega-caps to micro-caps, listed and unlisted.
Revenue, operating income, net income, total assets, equity, cash flows, EPS, ROE — normalized.
Keyset pagination. No SOAP, no XML, no SDKs required. Works with anything.
Automated daily ingestion from EDINET. New filings available within 24 hours.
| GET | /v1/companies |
| GET | /v1/companies/:code/financials |
| GET | /v1/companies/:code/ratios |
| GET | /v1/companies/:code/growth |
| GET | /v1/filings |
| GET | /v1/screen |
| GET | /v1/rankings/:metric |
| GET | /v1/compare |
| GET | /v1/timeseries |
| GET | /v1/bulk/financials.csv |
What's live and what's next.
Search 4,125 companies by EDINET code, securities code, or name.
278,920 data points across 30 metrics. FY 2022–2025.
12,121 parsed filings with dates, types, references.
English translations of filing sections for 54 companies. Growing daily.
Filter by financial criteria. Top-N by any metric.
Industry-level averages, medians, percentile ranks.
Business segment breakdowns from consolidated filings.
Historical data from EDINET archives.
All features free. Pay only for higher rate limits.
Need unlimited access? Contact us for custom SLA and pricing.
Free tier. 4,125+ companies. Real EDINET data.