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

# List Webhooks

> List your registered webhooks. Credentials are never returned.



## OpenAPI

````yaml /api-reference/openapi.json get /webhooks
openapi: 3.1.0
info:
  title: OmniX API
  version: 1.0.0
  description: >-
    The fastest X (Twitter) API. Read and write tweets, users, lists, media and
    articles with a single API key. Every request runs as a real X account you
    supply via `auth_token`. Flat $0.001 per successful call.
servers:
  - url: https://api.omnixapi.com/api/v1/twitter
security:
  - bearerAuth: []
tags:
  - name: Tweets
    description: Search, read and write tweets.
  - name: Users
    description: Profiles, timelines, networks and profile actions.
  - name: Lists
    description: X List data.
  - name: Media
    description: Upload images, GIFs and video.
  - name: Articles
    description: Long-form X Articles.
  - name: Direct Messages
    description: >-
      Read and send X (XChat) direct messages. Encrypted operations require your
      `encryption_code` (XChat PIN).
  - name: Webhooks
    description: >-
      Real-time event delivery. Register an https URL and OmniX POSTs typed,
      signed events for DMs, mentions, replies, likes and follows.
  - name: Account
    description: >-
      Your OmniX account details, credit balance, usage and payment history.
      Free — no credits deducted, and no X account token required.
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List Webhooks
      description: List your registered webhooks. Credentials are never returned.
      operationId: listWebhooks
      responses:
        '200':
          description: Your webhooks.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/Envelope'
                  - type: object
                    properties:
                      data:
                        type: object
                        properties:
                          webhooks:
                            type: array
                            items:
                              $ref: '#/components/schemas/Webhook'
                          result_count:
                            type: integer
                            example: 1
components:
  schemas:
    Envelope:
      type: object
      properties:
        status:
          type: boolean
          example: true
        data:
          type: object
        error:
          type: string
          nullable: true
          example: null
    Webhook:
      type: object
      properties:
        id:
          type: string
          description: Webhook id (use in URLs).
          example: '1700000000000000000'
        url:
          type: string
          description: Destination the events are POSTed to.
          example: https://your-app.com/hook
        valid:
          type: boolean
          description: true once the CRC handshake with the URL has succeeded.
          example: true
        created_at:
          type: string
          format: date-time
          example: '2026-06-14T12:24:00.000Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your OmniX API key, e.g. `omnix_live_...`. Billed per call.

````