curl -X GET https://scrape.st/webhook \
-H "x-api-key: YOUR_API_KEY"
{
"data": {
"id": "wh_abc123",
"apiKey": "sk_live_xxx",
"name": "My Webhook",
"url": "https://your-domain.com/webhook",
"status": "ACTIVE"
},
"message": "Webhook retrieved successfully"
}
Webhooks
Get Webhook
Retrieve the webhook configured for your API key
GET
/
webhook
curl -X GET https://scrape.st/webhook \
-H "x-api-key: YOUR_API_KEY"
{
"data": {
"id": "wh_abc123",
"apiKey": "sk_live_xxx",
"name": "My Webhook",
"url": "https://your-domain.com/webhook",
"status": "ACTIVE"
},
"message": "Webhook retrieved successfully"
}
Get the webhook configuration for your API key.
The
status field is either ACTIVE (delivering) or FAILED (auto-paused
after repeated delivery failures). See Delivery & Failure
Handling
for how to recover a paused webhook.Response
object
The webhook object if one exists
string
Status message
curl -X GET https://scrape.st/webhook \
-H "x-api-key: YOUR_API_KEY"
{
"data": {
"id": "wh_abc123",
"apiKey": "sk_live_xxx",
"name": "My Webhook",
"url": "https://your-domain.com/webhook",
"status": "ACTIVE"
},
"message": "Webhook retrieved successfully"
}