Skip to main content
GET
/
api
/
v1
/
webhooks
cURL
curl -sS \
  -H 'Authorization: Bearer $OXI_SK' \
  'https://api.0xinsider.com/api/v1/webhooks'
{
  "object": "<string>",
  "data": [
    {
      "id": 123,
      "object": "<string>",
      "name": "<string>",
      "url": "<string>",
      "event_types": [],
      "verification_token_expires_at": "2023-11-07T05:31:56Z",
      "failure_count": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "retry_policy": {
        "max_attempts": 123,
        "terminal_status": "<string>"
      },
      "verified_at": "2023-11-07T05:31:56Z",
      "signing_secret": "<string>",
      "verification": {
        "token": "<string>",
        "expires_at": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "has_more": true,
  "meta": {
    "request_id": "<string>",
    "cached": true,
    "cache_age_s": 123
  },
  "next_cursor": "<string>",
  "total": 123
}
List every webhook registered on your account. Each entry has the destination URL, subscribed events, delivery status, and signature-verification metadata.
curl -H "Authorization: Bearer $OXINSIDER_API_KEY" \
  "https://api.0xinsider.com/api/v1/webhooks"

The webhook lifecycle

  • Create a webhook with the URL and event types you care about.
  • Get one to inspect its current state.
  • Update to change URL, events, or active flag.
  • Delete when you no longer need it.
  • Verify the endpoint with its token to activate deliveries.
  • Rotate secret if a signing secret leaks.
For event types, the signature scheme, and verification code, see the Webhooks guide.

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.

Response

Webhook destination list

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