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

# List audit log entries for the authenticated organization

> Newest first, in a fixed order: `created_at` desc, then `id` desc.
Supports filtering by `action`, `component`, `from` and `to`.

The response is a cursor-paginated envelope carrying `data` and
`next_cursor`, where `next_cursor` is an opaque base64 string, or `null`
on the final page. Use `?limit=N` (default 50, cap 100) to control page
size, and pass that cursor back as `?cursor=` to advance pages.



## OpenAPI

````yaml /api-reference/openapi.json get /audit-logs
openapi: 3.1.0
info:
  title: Akumi
  version: 0.0.1
servers:
  - url: https://api.akumi.eu/v1
    description: Production
security:
  - http: []
tags:
  - name: Audit log
  - name: Chat completions
  - name: Embeddings
  - name: Models
  - name: Recall
  - name: Scores
paths:
  /audit-logs:
    get:
      tags:
        - Audit log
      summary: List audit log entries for the authenticated organization
      description: |-
        Newest first, in a fixed order: `created_at` desc, then `id` desc.
        Supports filtering by `action`, `component`, `from` and `to`.

        The response is a cursor-paginated envelope carrying `data` and
        `next_cursor`, where `next_cursor` is an opaque base64 string, or `null`
        on the final page. Use `?limit=N` (default 50, cap 100) to control page
        size, and pass that cursor back as `?cursor=` to advance pages.
      operationId: v1.audit-logs.index
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items: {}
                  next_cursor:
                    type:
                      - string
                      - 'null'
                required:
                  - data
                  - next_cursor
        '401':
          $ref: '#/components/responses/AuthenticationException'
components:
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````