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

# List provider events

> Retrieves ingested provider events with optional filtering.



## OpenAPI

````yaml get /v1/provider-events
openapi: 3.0.0
info:
  title: Revstack API
  version: 1.0.0
  description: >-
    Open Source Billing OS for Developers. The scalable, developer-first billing
    engine with subscriptions, invoicing, usage metering, and entitlements.
servers:
  - url: http://localhost:6900
    description: Revstack API (Local Development)
security: []
paths:
  /v1/provider-events:
    get:
      tags:
        - Provider Events
      summary: List provider events
      description: Retrieves ingested provider events with optional filtering.
      parameters:
        - schema:
            type: string
          required: false
          name: providerId
          in: query
        - schema:
            type: string
            enum:
              - pending
              - processed
              - failed
          required: false
          name: status
          in: query
        - schema:
            type: string
          required: false
          name: eventType
          in: query
      responses:
        '200':
          description: List of events
          content:
            application/json:
              schema:
                type: array
                items:
                  nullable: true

````