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

# List Simple Scheduler booking requests

> Booking requests submitted through Simple Scheduler. Supports offset pagination (`offset` + `limit`, returns `meta.total`) or cursor pagination (`cursor` = `created_at` from a previous page; response includes `next_cursor` and `has_more`). Requires the `read:scheduler_analytics` permission.



## OpenAPI

````yaml /api-reference/openapi.json get /api/simple_scheduler_booking_requests
openapi: 3.1.0
info:
  title: Avoca Enterprise API
  description: >-
    Read-only programmatic access to Avoca data: calls, transcripts, leads,
    coach evaluations, Simple Scheduler sessions and analytics, and outbound
    texting activity.
  version: 1.3.0
servers:
  - url: https://enterprise-api.avoca.ai
security:
  - bearerAuth: []
tags:
  - name: Calls
    description: Call records, transcripts, and pre-call transfers
  - name: Leads
    description: Unified leads (v0) and the canonical leads feed (v1)
  - name: Teams
    description: Teams accessible to the API key
  - name: Coach
    description: Coach (QA) call evaluations and rubrics
  - name: Scheduler Analytics (v0)
    description: Simple Scheduler analytics — legacy flat endpoints
  - name: Sessions & Bookings
    description: v1 scheduling-widget sessions and completed bookings
  - name: Analytics (v1)
    description: v1 funnel, UTM, service-area, and issue-type analytics
  - name: Outbound Texting
    description: Campaign text and subscription-event feeds for BI ingestion
paths:
  /api/simple_scheduler_booking_requests:
    get:
      tags:
        - Scheduler Analytics (v0)
      summary: List Simple Scheduler booking requests
      description: >-
        Booking requests submitted through Simple Scheduler. Supports offset
        pagination (`offset` + `limit`, returns `meta.total`) or cursor
        pagination (`cursor` = `created_at` from a previous page; response
        includes `next_cursor` and `has_more`). Requires the
        `read:scheduler_analytics` permission.
      operationId: listSimpleSchedulerBookingRequests
      parameters:
        - $ref: '#/components/parameters/xTeamId'
        - name: status
          in: query
          description: Filter by request status
          schema:
            type: string
        - name: scheduler_id
          in: query
          description: Filter to a specific scheduler
          schema:
            type: integer
        - name: has_utm
          in: query
          description: When `true`, only requests with UTM attribution
          schema:
            type: boolean
        - name: cursor
          in: query
          description: ISO 8601 `created_at` cursor from a previous page (cursor mode)
          schema:
            type: string
            format: date-time
        - $ref: '#/components/parameters/limit500'
        - $ref: '#/components/parameters/offset'
      responses:
        '200':
          description: Booking requests
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        team_id:
                          type: integer
                        scheduler_id:
                          type: integer
                        status:
                          type: string
                        st_job_id:
                          type:
                            - integer
                            - 'null'
                          description: ServiceTitan job ID when the request produced a job
                        created_at:
                          type: string
                          format: date-time
                        request_data:
                          type: object
                          description: Raw booking request payload
                  meta:
                    type: object
                    properties:
                      total:
                        type:
                          - integer
                          - 'null'
                        description: Total rows (offset mode only)
                      next_cursor:
                        type:
                          - string
                          - 'null'
                        description: Cursor for the next page (cursor mode)
                      has_more:
                        type: boolean
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    xTeamId:
      name: x-team-id
      in: header
      description: >-
        Target team ID. Required for multi-team (`enterprise_all_teams` /
        `portfolio_all_teams`) keys on v0 endpoints; single-team keys are locked
        to their team and omit it.
      schema:
        type: integer
    limit500:
      name: limit
      in: query
      description: Results per page (default 50, max 500)
      schema:
        type: integer
        default: 50
        maximum: 500
    offset:
      name: offset
      in: query
      description: Pagination offset (default 0)
      schema:
        type: integer
        default: 0
  responses:
    BadRequest:
      description: Invalid parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error type
        message:
          type: string
          description: Human-readable description (newer endpoints)
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `avoca_<64 hex characters>`

````