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

# List events

> List events, optionally filtered by company, sector, type, or date range.



## OpenAPI

````yaml /openapi.json get /v1/events
openapi: 3.1.0
info:
  title: Passu Public API
  summary: >-
    External read-only API for sectors, companies, events, metrics, and
    analyses.
  description: >-
    The Passu Public API is a read-only external API intended for
    server-to-server integrations.
  version: v1
servers:
  - url: https://api.passu.ai
    description: Production
security: []
tags:
  - name: auth
  - name: sectors
  - name: companies
  - name: events
  - name: metrics
  - name: analyses
paths:
  /v1/events:
    get:
      tags:
        - events
      summary: List events
      description: >-
        List events, optionally filtered by company, sector, type, or date
        range.
      operationId: listEvents
      parameters:
        - name: company_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: Filter events by company id.
            title: Company Id
          description: Filter events by company id.
        - name: sector_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: Filter events by sector id.
            title: Sector Id
          description: Filter events by sector id.
        - name: event_type
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/EventType'
              - type: 'null'
            description: Filter events by type.
            title: Event Type
          description: Filter events by type.
        - name: date_gte
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Return events on or after this date.
            title: Date Gte
          description: Return events on or after this date.
        - name: date_lte
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Return events on or before this date.
            title: Date Lte
          description: Return events on or before this date.
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Opaque cursor for pagination.
            title: Cursor
          description: Opaque cursor for pagination.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            description: Maximum number of records to return.
            default: 50
            title: Limit
          description: Maximum number of records to return.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventListResponse'
        '401':
          description: Authentication failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Problem'
        '403':
          description: Authenticated but not permitted to access this resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Problem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    EventType:
      type: string
      enum:
        - EARNINGS
        - CONFERENCE
        - ANALYST_DAY
        - BUSINESS_UPDATE
        - CAPITAL_MARKETS_DAY
        - SHAREHOLDER_MEETING
        - INVESTOR_PRESENTATION
        - MA_TRANSACTION
        - DEBT_TRANSACTION
        - CURRENT_REPORT
        - NEWS
        - OTHER
      title: EventType
      description: >-
        API-layer event type. All endpoints return this, never
        CorporateEventType directly.
    EventListResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Event'
          type: array
          title: Data
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - data
        - has_more
      title: EventListResponse
    Problem:
      properties:
        type:
          type: string
          title: Type
        title:
          type: string
          title: Title
        status:
          type: integer
          title: Status
        detail:
          type: string
          title: Detail
        request_id:
          type: string
          title: Request Id
        instance:
          anyOf:
            - type: string
            - type: 'null'
          title: Instance
        errors:
          anyOf:
            - items:
                $ref: '#/components/schemas/ValidationErrorItem'
              type: array
            - type: 'null'
          title: Errors
      type: object
      required:
        - type
        - title
        - status
        - detail
        - request_id
      title: Problem
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Event:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        company_id:
          type: string
          format: uuid
          title: Company Id
        type:
          $ref: '#/components/schemas/EventType'
        title:
          type: string
          title: Title
        date:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Date
        fiscal_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fiscal Year
        fiscal_quarter:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fiscal Quarter
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - company_id
        - type
        - title
        - updated_at
      title: Event
    ValidationErrorItem:
      properties:
        field:
          type: string
          title: Field
        message:
          type: string
          title: Message
      type: object
      required:
        - field
        - message
      title: ValidationErrorItem
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````