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

# List Access Events

> Recent access events (newest first), each with its returned resources.



## OpenAPI

````yaml /api-reference/catalog-api.json get /v1/audit/access
openapi: 3.1.0
info:
  title: Strattum Catalog API
  description: Expõe a estrutura do data lake — camadas, conectores e tabelas.
  version: 0.1.0
servers: []
security: []
paths:
  /v1/audit/access:
    get:
      tags:
        - audit
        - audit
      summary: List Access Events
      description: Recent access events (newest first), each with its returned resources.
      operationId: list_access_events_v1_audit_access_get
      parameters:
        - name: user
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Match actor_sub or actor_email
            title: User
          description: Match actor_sub or actor_email
        - name: channel
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Channel
        - name: tool
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Tool
        - name: service
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Service
        - name: from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: ISO timestamp lower bound
            title: From
          description: ISO timestamp lower bound
        - name: to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: ISO timestamp upper bound
            title: To
          description: ISO timestamp upper bound
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  additionalProperties: true
                  type: object
                title: Response List Access Events V1 Audit Access Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````