Webhooks

Get a Webhook

Retrieve one webhook subscription.

GET /v1/webhooks/{webhook_id} returns one webhook subscription. Use this endpoint before making changes if you need to confirm the current URL, event type, or active state.

The response does not include the signing secret.

Request

Replace the example webhook ID with the ID returned when the webhook was created or listed.

export SCRAPER_API_BASE_URL="https://scraper.geonode.io"
export GEONODE_SCRAPER_API_KEY="YOUR_API_KEY"

curl "$SCRAPER_API_BASE_URL/v1/webhooks/2a936d3b-5a5d-47a0-b68d-5df0d8b8327c" \
  -H "X-Api-Key: $GEONODE_SCRAPER_API_KEY"

Response

A successful request returns 200 with the webhook object.

{
  "id": "2a936d3b-5a5d-47a0-b68d-5df0d8b8327c",
  "url": "https://example.com/webhooks/geonode-scraper",
  "description": "Production batch completion webhook",
  "is_active": true,
  "event_type": "batch_completed",
  "created_at": "2026-05-27T08:15:30Z",
  "updated_at": "2026-05-27T08:15:30Z"
}

On this page