Skip to main content
GET
/
v1
/
webhooks
/
endpoints
cURL
curl --request GET \
  --url https://api.nxos.io/v1/webhooks/endpoints \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "object": "webhook_endpoint",
      "id": "ep_a1b2c3d4e5f6a1b2c3d4e5f6",
      "url": "https://example.com/webhooks/nxos",
      "description": "Production receiver",
      "disabled": false,
      "eventTypes": [
        "transaction.status.updated"
      ],
      "createdAt": "2026-06-08T12:00:00Z",
      "updatedAt": "2026-06-08T12:00:00Z"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Headers

Authorization
string
required

Bearer token. Format: Bearer <api_key>

Response

The request has succeeded.

Paginated list envelope. All list endpoints return this shape.

object
enum<string>
required

Object type. Always list for paginated responses.

Available options:
list
data
object[]
required

Array of results.

hasMore
boolean
required

Whether more results are available beyond this page.

nextCursor
string | null
required

Cursor to pass as cursor query parameter for the next page. Null when there are no more results.