---
title: "List Ownership Signals"
method: GET
path: "/v1/ownership/signals"
tags: ["ownership"]
---

# List Ownership Signals

`GET /v1/ownership/signals`

Get market-wide ownership signals.

Returns detected signals ordered by date (newest first).
By default excludes trivial signals (tier 3: new_position, exit_below_5pct).
Pass include_trivial=true or filter by specific signal_type to see all.

## Query parameters

- `signal_type` string, nullable — Filter: accumulation_streak, large_step_up, large_step_down, exit_below_5pct, activist_escalation, new_position, pace_acceleration, purpose_drift, coordinated_accumulation, systematic_exit
- `filer_code` string, nullable — Filter by filer EDINET code (e.g. 'E03606' for SBI Holdings)
- `include_trivial` boolean — Include tier 3 (trivial) signals like new_position and exit_below_5pct. Default returns only tier 1 (actionable) and tier 2 (informational).
- `date_from` string, date, nullable — Filter: detected_date on or after
- `date_to` string, date, nullable — Filter: detected_date on or before
- `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

- ListResponseOwnershipSignalOut
  - `data` OwnershipSignalOut[], required — Array of result objects.
    - `signal_type` string, required — Signal type: accumulation_streak, large_step_up, exit_below_5pct, etc.
    - `filer_code` string, required — Canonical EDINET code of the filer
    - `filer_name` string, nullable — Name of the filer (JP)
    - `filer_name_en` string, nullable — English name of the filer
    - `issuer_security_code` string, required — Securities code of the issuer
    - `issuer_name` string, nullable — Name of the issuer (JP)
    - `issuer_name_en` string, nullable — English name of the issuer
    - `detected_date` string, date, required — Date the signal was detected
    - `holding_ratio_pct` number, nullable — Holding ratio at signal time
    - `delta_pct` number, nullable — Change in percentage points
    - `confidence` number, required — Confidence score 0-1
    - `tier` integer — Signal tier: 1=actionable, 2=informational, 3=trivial
    - `metadata` object, nullable — Signal-specific context (streak, purpose, filers)
  - `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/versions/b8bf48556541/schema)
