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

# List Sessions

> List sessions for the authenticated organisation.

Ordered by starts_at descending (most recent first). Filter by status,
tutor, student, or date range. Supports limit/offset pagination.

Common status values: completed, scheduled, cancelled, pending,
time_change_requested, disputed.



## OpenAPI

````yaml /openapi.json get /v1/sessions
openapi: 3.1.0
info:
  title: EquateIt Public API
  description: >-
    REST API for EquateIt tutoring organisations. Pipe your sessions, invoices,
    payments, tutor earnings, students, and more into your own tools. Most
    endpoints are reads; a focused set of writes (each gated by a *:write scope)
    create or update data, including creating student/tutor/parent accounts.


    Authenticate every request with an org API key:

        Authorization: Token token=ei_live_...

    Mint keys in the EquateIt app under Settings → Developers.
  version: 1.0.0
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: General
  - name: Sessions
  - name: Tutors
  - name: Students & Parents
  - name: Billing
  - name: Curriculum
  - name: Coursework
  - name: Operations
  - name: Pricing
  - name: Bookings
  - name: Blog
  - name: Reports
paths:
  /v1/sessions:
    get:
      tags:
        - Sessions
      summary: List Sessions
      description: |-
        List sessions for the authenticated organisation.

        Ordered by starts_at descending (most recent first). Filter by status,
        tutor, student, or date range. Supports limit/offset pagination.

        Common status values: completed, scheduled, cancelled, pending,
        time_change_requested, disputed.
      operationId: list_sessions_v1_sessions_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by status: completed, scheduled, cancelled, pending, etc.'
            title: Status
          description: 'Filter by status: completed, scheduled, cancelled, pending, etc.'
        - name: tutor_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tutor UUID
            title: Tutor Id
          description: Filter by tutor UUID
        - name: student_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by student UUID
            title: Student Id
          description: Filter by student UUID
        - name: from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: starts_at >= this ISO date, e.g. 2026-05-01
            title: From
          description: starts_at >= this ISO date, e.g. 2026-05-01
        - name: to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: starts_at <= this ISO date, e.g. 2026-05-31
            title: To
          description: starts_at <= this ISO date, e.g. 2026-05-31
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Records per page (default 20, max 100)
            default: 20
            title: Limit
          description: Records per page (default 20, max 100)
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_Session_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Page_Session_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Session'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PageMeta'
      type: object
      required:
        - data
        - meta
      title: Page[Session]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Session:
      properties:
        id:
          type: string
          title: Id
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        tutor_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tutor Id
        student_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Student Id
        starts_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Starts At
        ends_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Ends At
        duration_minutes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Minutes
        tutor_pay_rate_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Tutor Pay Rate Cents
        student_rate_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Student Rate Cents
        amount_owed_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Amount Owed Cents
        mode:
          anyOf:
            - type: string
            - type: 'null'
          title: Mode
        subject_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Id
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
      type: object
      required:
        - id
      title: Session
    PageMeta:
      properties:
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Count
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
      type: object
      required:
        - limit
        - offset
      title: PageMeta
      description: |-
        Pagination envelope metadata. `count` is the size of the returned page;
        `total` (when present) is the full result-set size for offset paging.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Org API key as `Token token=ei_live_...`

````