---
title: "Get insider radar flags"
method: GET
path: "/api/v1/insider-radar"
tags: ["Insider Radar"]
---

# Get insider radar flags

`GET /api/v1/insider-radar`

Suspicious trading patterns — pre-resolution accumulation, coordinated wallets, unusual timing. Cursor-paginated by suspicion score.

## Query parameters

- `limit` integer
- `cursor` string
- `min_suspicion` number
- `severity` 'flag' | 'watch'

## Headers

- `If-None-Match` string

## Response `200`

Radar flags list

- object
  - `object` 'list', required
  - `data` RadarFlag[], required
    - `id` string, required — Prefixed ID (rf_...).
    - `suspicion_score` number, required
    - `severity` 'flag' | 'watch', required
    - `trader` object, required
      - `id` string, required
      - `address` string, required
      - `username` string, nullable
    - `market` object, required
      - `id` string, required
      - `condition_id` string, required
      - `title` string, required
    - `scores` object, required
      - `timing` number, nullable
      - `edge` number, nullable
      - `size` number, nullable
      - `fresh_wallet` number, nullable
    - `evidence` unknown, required
    - `created_at` string, date-time, required
  - `has_more` boolean, required
  - `next_cursor` string, nullable
  - `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
- `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-06-01** `422bd4dc1611` — 63 warning, 3 info
  - added the new `account_locked` enum value to the `error/code` response property for the response status `400`
  - added the new `account_locked` enum value to the `error/code` response property for the response status `401`
  - added the new `account_locked` enum value to the `error/code` response property for the response status `402`
  - added the new `account_locked` enum value to the `error/code` response property for the response status `403`
  - …62 more
- **2026-05-07** `2907497f4ca3` — 2 info
  - added the non-success response with the status `408`
  - added the non-success response with the status `503`
- **2026-04-03** `24aa764c32ea` — 2 info
  - added the non-success response with the status `403`
  - added the non-success response with the status `423`
- **2026-03-25** `e658903dd89b` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/0xinsider/apis/0xinsider-api/changes/api/v1/insider-radar/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)
