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

# List events

> Required permission: events:read.



## OpenAPI

````yaml /openapi.json get /events
openapi: 3.1.0
info:
  title: Italic API
  version: 2.0.0
  description: >-
    Recordings, devices, and notifications. Text syncs to Italic; audio stays on
    the client.
servers:
  - url: https://app.italic.com/api/v2
security: []
tags:
  - name: Recordings
  - name: Devices
  - name: API keys
  - name: Webhooks
  - name: Events
paths:
  /events:
    get:
      tags:
        - Events
      summary: List events
      description: 'Required permission: events:read.'
      operationId: listEvents
      parameters:
        - name: cursor
          in: query
          schema:
            type: string
            minLength: 0
            maxLength: 32
          description: >-
            Continue from nextCursor returned by the previous request. Omit to
            start at the beginning.
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: >-
            Success. Writes without read permission return an ID and revision
            only.
          headers:
            X-Request-Id:
              schema:
                type: string
              description: Request identifier for troubleshooting.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventList'
        default:
          description: Request failed. Errors include a stable code and a readable message.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    EventList:
      type: object
      properties:
        events:
          type: array
          items:
            $ref: '#/components/schemas/Event'
        nextCursor:
          type: string
      required:
        - events
        - nextCursor
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              minLength: 0
              maxLength: 100
            message:
              type: string
              minLength: 0
              maxLength: 1000
          required:
            - code
            - message
          additionalProperties: false
      required:
        - error
    Event:
      type: object
      properties:
        id:
          type: integer
          minimum: 0
          maximum: 9007199254740991
        type:
          type: string
          enum:
            - recording.created
            - recording.updated
            - recording.deleted
        recordingId:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]*$
        revision:
          type: integer
          minimum: 0
          maximum: 9007199254740991
        createdAt:
          type: integer
          minimum: 0
          maximum: 9007199254740991
      required:
        - id
        - type
        - recordingId
        - revision
        - createdAt
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An API key from Settings → Integrations.

````