Skip to main content
GET
/
v2
/
webhooks
List webhooks
curl --request GET \
  --url https://sandbox.groundtech.co/v2/webhooks \
  --header 'Authorization: Bearer <token>'
{ "endpoints": [ { "id": "6b6a0502-9d38-4f94-83fe-06706adbdc51", "url": "https://ops.acme-treasury.com/webhooks/ground", "events": [ "portfolio_wallet.deposit.status_changed", "portfolio_wallet.withdrawal.status_changed", "portfolio_wallet.status_changed" ], "createdAt": "2026-05-01T17:32:08.000Z" } ], "nextCursor": null, "hasMore": false }

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

Opaque cursor from the previous page.

limit
integer
default:25

Maximum number of webhook endpoints to return.

Required range: 1 <= x <= 100

Response

Paginated list of active webhooks

endpoints
object[]
nextCursor
string | null
hasMore
boolean