> ## 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 events

> Every event emitted for the organization, whether or not an endpoint was subscribed. Use it to backfill after an outage.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/webhooks/events
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://api.platform.chipper.ai
    description: Production (sk_live_ keys)
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
security:
  - bearerAuth: []
paths:
  /v1/webhooks/events:
    get:
      tags:
        - Webhooks
      summary: List events
      description: >-
        Every event emitted for the organization, whether or not an endpoint was
        subscribed. Use it to backfill after an outage.
      parameters:
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            description: Page size, 1–100.
            example: 20
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: The `nextCursor` from the previous page.
          required: false
          name: cursor
          in: query
        - schema:
            type: string
            description: Filter by event type.
            example: payout.completed
          required: false
          name: eventType
          in: query
      responses:
        '200':
          description: Newest first.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookEvent'
                  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:
    WebhookEvent:
      type: object
      properties:
        id:
          type: string
          example: wev_p2r8m5xk9qz3v7nt4wbh
        eventType:
          type: string
          example: payout.completed
        resourceId:
          type: string
          description: Id of the resource the event is about.
          example: pay_ghs_p95akjfs339uy9icpelj
        payload:
          type: object
          additionalProperties: {}
          description: >-
            Exactly what was POSTed to your endpoint: `{ event, data }`, where
            `data` is the resource as returned by its GET endpoint.
          example:
            event: payout.completed
            data:
              id: pay_ghs_p95akjfs339uy9icpelj
              status: completed
        createdAt:
          type: string
          format: date-time
          example: '2026-08-01T09:12:44.000Z'
      required:
        - id
        - eventType
        - resourceId
        - payload
        - createdAt
    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).'

````