---
title: "Get whale trade by ID"
method: GET
path: "/api/v1/whale-trades/{id}"
tags: ["Whale Trades"]
---

# Get whale trade by ID

`GET /api/v1/whale-trades/{id}`

Returns one whale trade by raw whale_alerts.id or the wt_-prefixed id emitted by list and history responses.

## Path parameters

- `id` string, required

## Headers

- `If-None-Match` string

## Response `200`

Whale trade

- object
  - `object` 'whale_trade', required
  - `data` WhaleTrade, required
    - `id` string, required — Prefixed ID (wt_...).
    - `traded_at` string, date-time, required
    - `size_usd` number, required
    - `side` 'BUY' | 'SELL', required
    - `outcome` string, nullable — Traded outcome label (e.g. "Yes"/"No"/team name), resolved provider-first from the trade's outcome_index against market_canonical (index 0 -> yes, 1 -> no). Distinct axis from side (BUY/SELL): side is the trade direction, outcome is which leg was traded. null for multi-outcome (outcome_index >= 2) or unsynced markets; a Kalshi row carries its provider label here (only token_id is null for Kalshi, since there is no CLOB token).
    - `token_id` string, nullable — The Polymarket CLOB token id (ERC1155 asset id, decimal string) for the traded outcome; null when unavailable (e.g. Kalshi markets, unsynced markets).
    - `price` number, required
    - `signal_score` number, required — 0.0–1.0 normalized signal score.
    - `trader` object, required
      - `id` string, required
      - `address` string, required
      - `username` string, nullable
      - `grade` string, nullable
    - `market` object, required
      - `id` string, required
      - `condition_id` string, required
      - `title` string, required
      - `slug` string, nullable
      - `category` string, nullable — Provider-backed market_canonical category.
  - `meta` ResponseMeta, required
    - `request_id` string, required — Unique request ID (req_ prefix).
    - `cached` boolean, required
    - `cache_age_s` integer, nullable — Cache age in seconds, null if not cached.

## Other responses

- `304` — Not Modified. Returned when If-None-Match matches the current payload.
- `400` — Invalid request parameter
- `401` — Missing or invalid API key
- `402` — Active Insider subscription required
- `403` — Account access denied
- `404` — Resource not found
- `408` — Request exceeded the server's 30-second transport timeout. The timeout response has an empty body because it is generated before handler-level JSON error shaping.
- `423` — Account is locked
- `429` — Rate limit exceeded (100 req/min; batch endpoints also reserve 100 batch item units/min before execution)
- `503` — Redis-backed authenticated rate limiter unavailable; retry after the per-process outage cooldown

## Changes

- **2026-07-01** `e31231c630fb` — 2 info
  - added the optional property `data/outcome` to the response with the `200` status
  - added the optional property `data/token_id` to the response with the `200` status
- **2026-06-01** `a311bdcfd354` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/0xinsider/apis/0xinsider-api/changes/api/v1/whale-trades/:id/get.md)

---

[API](https://skmtc.dev/0xinsider/apis/0xinsider-api.md) · [All operations](https://skmtc.dev/0xinsider/apis/0xinsider-api/llms.txt) · [OpenAPI document](https://skmtc.dev/0xinsider/apis/0xinsider-api/revisions/137fa0fd3297?raw)
