Skip to main content
GET
/
webhooks
List all webhooks
curl --request GET \
  --url https://service.bluumfinance.com/v1/webhooks \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "webhooks": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Order Filled Webhook",
        "url": "https://example.com/webhooks/orders",
        "status": "ACTIVE",
        "eventTypes": [],
        "createdAt": "2026-01-15T10:00:00Z",
        "updatedAt": "2026-01-15T10:00:00Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Response

Webhooks retrieved successfully

status
string
data
object