> ## 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 Rate Cells

> List the org's rate-matrix cells — student rates per (band × tier × subject ×
session kind), plus the in-person surcharge.

Scoped directly by `organization_id`. Tutor-pay fields are pay-sensitive and
only included when `include_pay=true`.



## OpenAPI

````yaml /openapi.json get /v1/rate-cells
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/rate-cells:
    get:
      tags:
        - Pricing
      summary: List Rate Cells
      description: >-
        List the org's rate-matrix cells — student rates per (band × tier ×
        subject ×

        session kind), plus the in-person surcharge.


        Scoped directly by `organization_id`. Tutor-pay fields are pay-sensitive
        and

        only included when `include_pay=true`.
      operationId: list_rate_cells_v1_rate_cells_get
      parameters:
        - name: band_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by rate band UUID
            title: Band Id
          description: Filter by rate band UUID
        - name: tutor_tier_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tutor tier UUID
            title: Tutor Tier Id
          description: Filter by tutor tier UUID
        - name: subject_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by subject id, e.g. methods_34
            title: Subject Id
          description: Filter by subject id, e.g. methods_34
        - name: session_kind
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 1on1_online, 1on1_inperson, group, classroom
            title: Session Kind
          description: 1on1_online, 1on1_inperson, group, classroom
        - name: include_pay
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Include pay-sensitive tutor-pay fields (tutor_pay_mode,
              tutor_pay_pct, tutor_flat_rate_cents). Default false.
            default: false
            title: Include Pay
          description: >-
            Include pay-sensitive tutor-pay fields (tutor_pay_mode,
            tutor_pay_pct, tutor_flat_rate_cents). Default false.
        - 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_RateCell_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Page_RateCell_:
      properties:
        data:
          items:
            $ref: '#/components/schemas/RateCell'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/PageMeta'
      type: object
      required:
        - data
        - meta
      title: Page[RateCell]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RateCell:
      properties:
        id:
          type: string
          title: Id
        band_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Band Id
        tutor_tier_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Tutor Tier Id
        subject_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Subject Id
        session_kind:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Kind
        student_rate_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Student Rate Cents
        inperson_surcharge_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Inperson Surcharge Cents
        tutor_pay_mode:
          anyOf:
            - type: string
            - type: 'null'
          title: Tutor Pay Mode
        tutor_pay_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Tutor Pay Pct
        tutor_flat_rate_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Tutor Flat Rate Cents
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
      title: RateCell
      description: >-
        One cell of the org rate matrix (band × tier × subject × session_kind).

        Tutor-pay fields (tutor_pay_mode, tutor_pay_pct, tutor_flat_rate_cents)
        are

        pay-sensitive and only populated when `include_pay=true`.
    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_...`

````