---
title: "List Recent Voting"
method: GET
path: "/v1/voting/recent"
tags: ["voting"]
---

# List Recent Voting

`GET /v1/voting/recent`

Get recent AGM voting results across all companies.

Returns the most recent voting data, ordered by AGM date descending.
Use min_dissent_pct to find proposals with significant opposition.

## Query parameters

- `min_dissent_pct` number, nullable — Minimum dissent percentage to filter high-opposition proposals (e.g. 20.0)
- `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)
