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

# List webhook endpoints

> All endpoints for the organization, newest first. Not paginated — `hasMore` is always false.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/webhooks/endpoints
openapi: 3.1.0
info:
  title: Chipper Platform API
  version: '2026-02-20'
  description: >-
    Payouts, collections, and FX across African rails — bank, mobile money, and
    stablecoins — through one API.
servers:
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
  - url: https://api.platform.chipper.ai
    description: Production (sk_live_ keys)
security:
  - bearerAuth: []
paths:
  /v1/webhooks/endpoints:
    get:
      tags:
        - Webhooks
      summary: List webhook endpoints
      description: >-
        All endpoints for the organization, newest first. Not paginated —
        `hasMore` is always false.
      responses:
        '200':
          description: Newest first.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookEndpoint'
                  hasMore:
                    type: boolean
                  nextCursor:
                    type:
                      - string
                      - 'null'
                    description: >-
                      Pass as `cursor` to fetch the next page. Null on the last
                      page.
                required:
                  - data
                  - hasMore
                  - nextCursor
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: unauthorized
                message: Invalid API key
                requestId: req_q7vei435zifs51ia0lqr
      security:
        - bearerAuth: []
components:
  schemas:
    WebhookEndpoint:
      type: object
      properties:
        id:
          type: string
          example: whe_k3m9x2pq7vn4t8wz1bcd
        url:
          type: string
          format: uri
          example: https://api.example.com/chipper/webhooks
        description:
          type:
            - string
            - 'null'
          example: Production listener
        events:
          type: array
          items:
            type: string
          description: Subscribed event types, or `["*"]` for all.
          example:
            - payout.completed
            - payout.failed
            - collection.completed
        status:
          type: string
          enum:
            - active
            - disabled
        failureCount:
          type: integer
          description: Consecutive failed attempts. Reset to 0 on the next success.
          example: 0
        disabledReason:
          type:
            - string
            - 'null'
          enum:
            - manual
            - consecutive_failures
          description: >-
            `consecutive_failures` after 10 failed attempts in a row, `manual`
            when you disabled it, null when active.
        createdAt:
          type: string
          format: date-time
          example: '2026-08-01T09:12:44.000Z'
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - url
        - description
        - events
        - status
        - failureCount
        - disabledReason
        - createdAt
        - updatedAt
    Error:
      type: object
      properties:
        error:
          type: string
          description: Stable machine-readable code.
        message:
          type: string
          description: Human-readable explanation.
        requestId:
          type: string
          description: Echoed in the x-request-id response header — quote it to support.
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your API key: `sk_test_…` (sandbox) or `sk_live_…` (production).'

````