Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.polygon.technology/v0.9/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "complianceOnly": true,
      "createdAt": "2023-11-07T05:31:56Z",
      "enabled": true,
      "events": [
        "<string>"
      ],
      "id": "<string>",
      "secret": "<string>",
      "url": "<string>"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>",
  "object": "<string>",
  "previousCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Token from POST /auth/token

Query Parameters

limit
integer<int32>
startingAfter
string
endingBefore
string

Response

200 - application/json

The request has succeeded.

data
object[]
hasMore
boolean

True when more rows exist beyond this page in the direction of travel (forward by default, backward when endingBefore was supplied).

nextCursor
string

Opaque cursor pointing at the last item in this page. Present when data is non-empty. Pass as startingAfter to fetch the next page; hasMore=false signals no more pages forward.

object
string
previousCursor
string

Opaque cursor pointing at the first item in this page. Present when data is non-empty. Pass as endingBefore to page backward; when this yields an empty response the client is at the start of the list.