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

# List Formats



## OpenAPI

````yaml /openapi.json get /v1/events/{event_id}/formats
openapi: 3.1.0
info:
  title: SpeakerWeave API
  version: 1.0.1
  description: >-
    Organization-scoped REST API for conference program data. Authenticate every
    request with an API token from Settings → API tokens, sent as the
    x-access-token header.
servers:
  - url: https://speakerweave.com
security:
  - apiToken: []
paths:
  /v1/events/{event_id}/formats:
    get:
      tags:
        - v1-public
      summary: List Formats
      operationId: list_formats_v1_events__event_id__formats_get
      parameters:
        - name: event_id
          in: path
          required: true
          schema:
            type: string
            title: Event Id
        - name: page
          in: query
          required: false
          schema:
            type: integer
            title: Page
            default: 1
        - name: pageSize
          in: query
          required: false
          schema:
            type: integer
            title: Pagesize
            default: 25
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response List Formats V1 Events  Event Id  Formats 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
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: x-access-token

````