---
title: "Search Translations"
method: GET
path: "/v1/translations/search"
tags: ["translations"]
---

# Search Translations

`GET /v1/translations/search`

Full-text search across translated filing content.

Returns relevant matches with highlighted snippets, ranked by relevance.
Uses PostgreSQL tsvector/tsquery for full-text search.

## Query parameters

- `q` string, required — Search query
- `section` string, nullable — Filter by section
- `fiscal_year` integer, nullable — Filter by fiscal year
- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- ListResponseTranslationSearchResult
  - `data` TranslationSearchResult[], required — Array of result objects.
    - `section` string, required — Filing section where the match was found.
    - `snippet` string, required — Text snippet with matching terms highlighted.
    - `edinet_code` string, required — EDINET submitter code of the matched company.
    - `company_name` string, nullable — Company name in Japanese.
    - `fiscal_year` integer, required — Fiscal year of the matched filing.
    - `doc_id` string, required — EDINET document ID of the matched filing.
    - `rank` number, required — PostgreSQL ts_rank relevance score. Higher means more relevant.
  - `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)
