Skip to main content
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.

Response

data
object
The webhook object if one exists
message
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"
}