Webhooks
List webhook endpoints
List signed HTTPS webhook endpoints registered for your account and API environment.
API key permission: webhooks:read.
Parameters
NameTypeDescription
limitinteger · optionalquery parameter
cursorstring · optionalOpaque signed cursor from next_cursor.
Standard response headers
HeaderExampleDescription
Stepes-Request-Idb09de4aa-3874-4991-b85c-0bc86e780511Server-generated request identifier for support and audit correlation.
Stepes-API-Version2.0.0Effective Stepes API semantic version.
RateLimit-Policy120;w=60Effective request limit and window for the authenticated key.
RateLimitlimit=120, remaining=119, reset=60Current limit, remaining requests, and reset interval.
Responses
200
Webhook list
{
"object": "list",
"data": [
{
"id": "string",
"object": "webhook_endpoint",
"url": "https://example.com/resource",
"name": "string",
"events": [
"quote.created"
],
"status": "active",
"created_at": "2026-07-23T12:00:00Z",
"updated_at": "2026-07-23T12:00:00Z"
}
],
"has_more": true,
"next_cursor": "string"
}