AlterLabAlterLab
PricingComparePlaygroundBlogDocsChangelog
    AlterLabAlterLab
    PricingComparePlaygroundBlogDocsChangelog
    IntroductionQuickstartInstallationYour First Request
    REST APIJob PollingAPI KeysSessions APINew
    OverviewPythonNode.js
    JavaScript RenderingOutput FormatsPDF & OCRCachingWebhooksJSON Schema FilteringWebSocket Real-TimeBring Your Own ProxyProAuthenticated ScrapingNewWeb CrawlingBatch ScrapingSchedulerChange DetectionCloud Storage ExportSpend LimitsOrganizations & TeamsAlerts & Notifications
    Structured ExtractionAIE-commerce ScrapingNews MonitoringPrice MonitoringMulti-Page CrawlingMonitoring DashboardAI Agent / MCPMCPData Pipeline to Cloud
    PricingRate LimitsError Codes
    From FirecrawlFrom ApifyFrom ScrapingBee / ScraperAPIFirecrawl v0 API ReferenceLegacy
    PlaygroundPricingStatus
    API Reference
    Auto-generated

    User Webhooks

    API reference for user webhooks endpoints.

    Auto-generated

    This page was generated from the OpenAPI spec. Runmake generate-docs to refresh after spec changes.

    GET /api/v1/user-webhooks/{webhook_id}

    GET
    /api/v1/user-webhooks/{webhook_id}

    Get Webhook

    Parameters

    NameTypeRequiredDescription
    webhook_idstring
    Required
    Webhook ID
    X-Organization-IdstringOptionalX-Organization-Id

    Request Example

    Bash
    curl -X GET https://api.alterlab.io/api/v1/user-webhooks/<webhook_id> \
      -H "X-API-Key: YOUR_API_KEY" \
      -H "Content-Type: application/json"

    Response Example

    JSON
    {
      "webhook": "example",
      "recent_deliveries": [],
      "stats": {}
    }

    PUT /api/v1/user-webhooks/{webhook_id}

    PUT
    /api/v1/user-webhooks/{webhook_id}

    Update Webhook

    Parameters

    NameTypeRequiredDescription
    webhook_idstring
    Required
    Webhook ID
    X-Organization-IdstringOptionalX-Organization-Id
    namestringOptionalname
    urlstringOptionalurl
    eventsstring[]Optionalevents
    is_activebooleanOptionalis_active

    Request Example

    Bash
    curl -X PUT https://api.alterlab.io/api/v1/user-webhooks/<webhook_id> \
      -H "X-API-Key: YOUR_API_KEY" \
      -H "Content-Type: application/json"

    Response Example

    JSON
    {
      "id": "example",
      "name": "example",
      "url": "example",
      "events": [],
      "is_active": true,
      "failure_count": 0
    }

    DELETE /api/v1/user-webhooks/{webhook_id}

    DELETE
    /api/v1/user-webhooks/{webhook_id}

    Delete Webhook

    Parameters

    NameTypeRequiredDescription
    webhook_idstring
    Required
    Webhook ID
    X-Organization-IdstringOptionalX-Organization-Id

    Request Example

    Bash
    curl -X DELETE https://api.alterlab.io/api/v1/user-webhooks/<webhook_id> \
      -H "X-API-Key: YOUR_API_KEY" \
      -H "Content-Type: application/json"

    Response Example

    JSON
    {
      "status": "ok"
    }
    Last updated: March 2026

    On this page