---
title: "Get Ranking"
method: GET
path: "/v1/rankings/{metric}"
tags: ["rankings"]
---

# Get Ranking

`GET /v1/rankings/{metric}`

Rank companies by a financial metric.

Returns top N companies sorted by the chosen metric, with the
metric value and basic company info.

## Path parameters

- `metric` string, required

## Query parameters

- `sector` string, nullable — Filter by sector
- `fiscal_year` integer, nullable
- `order` string
- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- ListResponseRankingResultOut
  - `data` RankingResultOut[], required — Array of result objects.
    - `rank` integer, required — Position in the ranking (1-based).
    - `company` CompanyOut, required
      - `edinet_code` string, required — EDINET submitter code assigned by FSA (e.g. 'E02144'). Primary identifier.
      - `securities_code` string, nullable — TSE securities code, 4 digits (e.g. '7203').
      - `name_jp` string, required — Company name in Japanese (e.g. 'トヨタ自動車株式会社').
      - `name_en` string, nullable — Company name in English. Null if not provided in filings.
      - `sector` string, nullable — TSE 33-sector classification in Japanese (e.g. '輸送用機器').
      - `sector_en` string, nullable — TSE 33-sector in English. Auto-translated.
      - `fiscal_year_end` string, nullable — Fiscal year-end month as 2-digit string (e.g. '03' for March).
      - `listing` string, nullable — TSE market segment in Japanese (e.g. 'プライム（内国株式）').
      - `listing_en` string, nullable — TSE market segment in English (e.g. 'Prime'). Auto-translated from listing.
      - `created_at` string, date-time, required — When this company record was first created in Axiora.
      - `updated_at` string, date-time, required — When this company record was last updated.
    - `fiscal_year` integer, required — Fiscal year of the ranked value.
    - `value` union — The metric value used for ranking.
      - number
      - integer
    - `metric` string, required — Which metric was used (e.g. 'revenue', 'roe').
  - `meta` Meta, required
    - `total` integer, nullable — Total number of matching records (list endpoints only).
    - `limit` integer, nullable — Maximum records returned per page.
    - `offset` integer, nullable — Number of records skipped (offset-based pagination).
    - `next_cursor` string, nullable — Opaque cursor for the next page (keyset pagination). Null on the last page.
    - `request_id` string, required — Unique request identifier for tracing and support (e.g. 'req_abc123').

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/axioradev/apis/axiora-api.md) · [All operations](https://skmtc.net/axioradev/apis/axiora-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/axioradev/axiora-api/revisions/b8bf48556541/schema)
