Skip to main content
GET
/
api
/
v1
/
whale-trades
List whale trades
curl --request GET \
  --url https://api.0xinsider.com/api/v1/whale-trades \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "data": [
    {
      "id": "<string>",
      "traded_at": "2023-11-07T05:31:56Z",
      "size_usd": 123,
      "side": "BUY",
      "price": 123,
      "signal_score": 123,
      "trader": {
        "id": "<string>",
        "address": "<string>",
        "username": "<string>",
        "grade": "<string>"
      },
      "market": {
        "id": "<string>",
        "condition_id": "<string>",
        "title": "<string>",
        "slug": "<string>",
        "category": "<string>"
      }
    }
  ],
  "has_more": true,
  "meta": {
    "request_id": "<string>",
    "cached": true,
    "cache_age_s": 123
  },
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_test_...

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response's next_cursor.

min_size
number
default:5000

Minimum trade size in USD.

category
string

Filter by market category (case-insensitive).

min_grade
enum<string>

Minimum trader grade.

Available options:
S,
A,
B,
C,
D,
F

Response

List of whale trades

object
string
required
Allowed value: "list"
data
object[]
required
has_more
boolean
required
meta
object
required
next_cursor
string | null