---
title: "List Company Voting"
method: GET
path: "/v1/companies/{code}/voting"
tags: ["voting"]
---

# List Company Voting

`GET /v1/companies/{code}/voting`

Get AGM voting results for a company.

Returns per-proposal voting data including votes for/against/abstain,
approval percentages, and outcomes. Director elections include
per-candidate breakdowns.

## Path parameters

- `code` string, required — EDINET code (e.g. 'E02144') or securities code (e.g. '7203')

## Query parameters

- `fiscal_year` integer, nullable — Filter by fiscal year
- `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

- ListResponseVotingResultOut
  - `data` VotingResultOut[], required — Array of result objects.
    - `edinet_code` string, required — EDINET submitter code.
    - `securities_code` string, nullable — TSE securities code.
    - `agm_date` string, date, nullable — AGM date (ISO 8601).
    - `proposal_number` integer, required — Proposal number (1-based).
    - `proposal_description` string, nullable — Description of the proposal.
    - `candidate_name` string, nullable — Candidate name (for director/auditor elections).
    - `votes_for` integer, nullable — Votes in favor.
    - `votes_against` integer, nullable — Votes against.
    - `votes_abstain` integer, nullable — Abstentions.
    - `approval_pct` number, nullable — Approval percentage (0-100).
    - `result` string, nullable — Vote result: '可決' (approved) or '否決' (rejected).
  - `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)
