> ## Documentation Index
> Fetch the complete documentation index at: https://developers.stover.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Incoming Webhooks

> Receive external webhooks from third-party services.

<Note>
  This is a public endpoint. No authentication required.
</Note>

## Setup

1. Go to **Settings** > **Webhooks** > **Incoming** in your dashboard
2. Create a new webhook and copy the URL
3. Configure your external service to send data to that URL

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.stover.app/v1/webhooks/receive/wh_abc123 \
    -H "Content-Type: application/json" \
    -d '{
      "event": "form_submitted",
      "name": "John Doe",
      "email": "john@example.com"
    }'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.stover.app/v1/webhooks/receive/wh_abc123', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      event: 'form_submitted',
      name: 'John Doe',
      email: 'john@example.com'
    })
  });
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      'https://api.stover.app/v1/webhooks/receive/wh_abc123',
      headers={
          'Content-Type': 'application/json'
      },
      json={
          'event': 'form_submitted',
          'name': 'John Doe',
          'email': 'john@example.com'
      }
  )
  ```
</CodeGroup>

## Integrations

Works with Zapier, Make, n8n, and any service that can send HTTP POST requests.


## OpenAPI

````yaml POST /v1/webhooks/receive/{webhook_key}
openapi: 3.1.0
info:
  title: Stover API
  description: API for managing contacts and social media posts
  version: 1.0.0
  contact:
    email: support@stover.app
servers:
  - url: https://api.stover.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/webhooks/receive/{webhook_key}:
    post:
      tags:
        - Webhooks
      summary: Receive Webhook
      description: Receive external webhooks from third-party services.
      operationId: receiveWebhook
      parameters:
        - name: webhook_key
          in: path
          required: true
          description: Your webhook key
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              description: Any JSON payload
      responses:
        '200':
          description: Webhook received
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
        '404':
          $ref: '#/components/responses/NotFound'
      security: []
components:
  schemas:
    SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key: Bearer stover_pk_...'

````