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

# Search Companies

`GET /v1/companies/search`

Search companies by name, securities code, or EDINET code.

Returns results ranked by match quality: exact code matches first,
then prefix matches, then substring matches.

## Query parameters

- `q` string, required — Search query
- `limit` integer

## 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)
