GET
/
1
/
webhook
Get active webhooks
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/webhook
{
  "success": true,
  "count": 123,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "chainIds": [
        "<string>"
      ],
      "events": [
        "<string>"
      ],
      "filters": "<any>",
      "webhookUrl": "<string>",
      "apiKey": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Query Parameters

ParameterTypeRequiredDescription
apiKeystringyesThe API key associated with the webhooks. Must not be empty.

Usage Example

Retrieve active webhooks using your API key:
curl -X GET "https://explorer-api.mobula.io/api/1/webhook?apiKey=YOUR_API_KEY"

Query Parameters

apiKey
string
required
Minimum length: 1

Response

200 - application/json

Webhook Active Subscription

The response is of type object.