Skip to main content
GET
/
api
/
v1
/
events
/
feed
/
since
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/events/feed/since'
{
  "object": "events",
  "data": {},
  "meta": {
    "request_id": "req_example",
    "cached": false
  }
}
Replay feed events you missed during a disconnection. Pass the timestamp (or event ID) of the last event you processed, and the response is everything after it.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/events/feed/since?since=2026-05-08T12:34:56Z&limit=100"
Cursor-paginated. Catch a worker back up after a crash or deploy without back-filling from the live feed. Pair with Webhooks if you’d rather not poll at all.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_live_... for live data (requires an active Insider subscription), or oxi_sk_test_... for sandbox/test mode (free account, deterministic fixture data, no live rows). Both key classes use the same paths; the prefix selects live vs sandbox.

Query Parameters

cursor
string

Opaque event replay cursor returned as next_cursor by a prior response. The cursor maps to whale_alerts.id and is valid across backend replicas. Omit to fetch the latest durable public suffix.

limit
integer
default:50

Maximum durable public whale-trade events to return.

Required range: 1 <= x <= 100

Response

Public event replay window

object
string
required
Allowed value: "event_replay"
data
object[]
required
has_more
boolean
required
next_cursor
string
required
meta
object
required