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

# Verify

> Validate the API key and return org context + webhook secret.

The ``webhook_secret`` is the value clients must use to verify the
``X-Overten-Signature`` header on webhooks (see
:doc:`backend/docs/api/SECURITY.md`).



## OpenAPI

````yaml /openapi.json get /verify
openapi: 3.1.0
info:
  title: Overten API
  version: 1.0.0
  description: >-
    Generate and edit Word, Excel, and PowerPoint documents programmatically.
    Powered by the same agents as the Overten web app.
  contact:
    name: Overten Support
    url: https://overten.ai/support
    email: support@overten.ai
  license:
    name: Terms of Service
    url: https://overten.ai/terms
servers:
  - url: https://backend.overtenai.com/api/v1
    description: Production
  - url: http://localhost:8000/api/v1
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /verify:
    get:
      tags:
        - public
        - identity
      summary: Verify
      description: |-
        Validate the API key and return org context + webhook secret.

        The ``webhook_secret`` is the value clients must use to verify the
        ``X-Overten-Signature`` header on webhooks (see
        :doc:`backend/docs/api/SECURITY.md`).
      operationId: verify_api_v1_verify_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Send `X-API-Key: sk_live_<your_key>`. Keys are issued via POST /signup
        or via the dashboard. Legacy callers may also use `Authorization: Bearer
        sk_live_<your_key>`.

````