> ## 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 audit logs

> Retrieves audit log entries with optional filtering by actor, action, and resource.



## OpenAPI

````yaml get /v1/audit
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/audit:
    get:
      tags:
        - Audit
      summary: List audit logs
      description: >-
        Retrieves audit log entries with optional filtering by actor, action,
        and resource.
      parameters:
        - schema:
            type: string
          required: false
          name: environment_id
          in: query
        - schema:
            type: string
          required: false
          name: actor_id
          in: query
        - schema:
            type: string
          required: false
          name: action
          in: query
        - schema:
            type: string
          required: false
          name: resource
          in: query
      responses:
        '200':
          description: List of audit logs
          content:
            application/json:
              schema:
                type: array
                items:
                  nullable: true

````