---
title: "List Companies"
method: GET
path: "/v1/companies"
tags: ["companies"]
---

# List Companies

`GET /v1/companies`

## Query parameters

- `sector` string, nullable
- `name` string, nullable
- `securities_code` string, nullable
- `since` string, date-time, nullable — Return companies updated after this timestamp (ISO 8601). Use the sync_token from a previous response.
- `limit` integer — Results per page
- `offset` integer — Results to skip (ignored when cursor is set)
- `cursor` string, nullable — Opaque cursor for keyset pagination

## Response `200`

Successful Response

- ListResponseCompanyOut
  - `data` CompanyOut[], required — Array of result objects.
    - `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.
  - `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)
