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

# Get webhook URL

> Get or create webhook for user and return dashboard URL



## OpenAPI

````yaml https://api.chunkr.ai/docs/openapi.json get /webhook/url
openapi: 3.1.0
info:
  title: Chunkr API
  description: >-
    API service for document layout analysis and chunking to convert document
    into RAG/LLM-ready data.
  contact:
    name: Chunkr
    url: https://chunkr.ai
    email: ishaan@lumina.sh
  license:
    name: ''
  version: 2.62.0
servers:
  - url: https://api.chunkr.ai
    description: Chunkr API
security: []
tags:
  - name: Files
    description: Endpoints for uploading and managing files
  - name: Health
    description: Endpoint for checking the health of the service.
  - name: Tasks
    description: Endpoints for uploading and managing tasks
  - name: Webhook
    description: Endpoints for managing webhooks
paths:
  /webhook/url:
    get:
      tags:
        - Webhook
      summary: Get webhook URL
      description: Get or create webhook for user and return dashboard URL
      operationId: get_webhook_url
      responses:
        '200':
          description: Svix App Portal URL for the user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookUrlResponse'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Server error
          content:
            text/plain:
              schema:
                type: string
      security:
        - api_key: []
components:
  schemas:
    WebhookUrlResponse:
      type: object
      required:
        - url
      properties:
        url:
          type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: Authorization

````