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

# List webhook events

> Retrieve a paginated list of webhook events delivered by the Terminal49 API, including delivery status, payload metadata, and endpoint details.



## OpenAPI

````yaml get /webhooks/events
openapi: 3.0.0
info:
  title: Terminal49 API Reference
  version: 0.2.0
  contact:
    name: Terminal49 API support
    url: https://www.terminal49.com
    email: support@terminal49.com
  description: >-
    The Terminal 49 API offers a convenient way to programmatically track your
    shipments from origin to destination.


    Please enter your API key into the "Variables" tab before using these
    endpoints within Postman.
  x-label: Beta
  termsOfService: https://www.terminal49.com/terms
servers:
  - url: https://api.terminal49.com/v2
    description: Production
security:
  - authorization: []
tags:
  - name: Containers
  - name: Custom Field Definitions
  - name: Custom Field Options
  - name: Custom Fields
  - name: Shipments
  - name: Locations
  - name: Events
  - name: Tracking Requests
  - name: Webhooks
  - name: Webhook Notifications
  - name: Ports
  - name: Metro Areas
  - name: Terminals
  - name: Routing (Paid)
  - name: Documents
  - name: Email Submissions
  - name: Document Schemas
  - name: Search
paths:
  /webhooks/events:
    parameters: []
    get:
      tags:
        - Webhooks
      summary: List webhook events
      description: >-
        Returns webhook event categories and event names available to the
        authenticated account. Events may be filtered by account features.
      operationId: get-webhooks-events
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                          enum:
                            - webhook_event_category
                        attributes:
                          type: object
                          properties:
                            name:
                              type: string
                            events:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: string
                                    example: tracking_request.succeeded
                                  description:
                                    type: string
                                required:
                                  - name
                                  - description
                          required:
                            - name
                            - events
                      required:
                        - id
                        - type
                        - attributes
              examples:
                Event categories:
                  value:
                    data:
                      - id: tracking-request-events
                        type: webhook_event_category
                        attributes:
                          name: Tracking Request Events
                          events:
                            - name: tracking_request.succeeded
                              description: >-
                                Shipment created and linked to the tracking
                                request.
components:
  securitySchemes:
    authorization:
      name: Authorization
      type: apiKey
      in: header
      description: >-
        Use a Terminal49 API key in the `Authorization` header with the `Token`
        prefix.


        `Authorization: Token YOUR_API_KEY`

````