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

# Get booking floor

> Reads the live native floor, including current parties, holds, and the next claim within 24 hours. Requires bookings:read. Guest contact is limited to names and the last four phone digits. Read on demand or poll no more often than every 15 seconds; booking webhooks signal changes.



## OpenAPI

````yaml /openapi/developer-api.json get /locations/{locationId}/booking_floor
openapi: 3.1.0
info:
  title: Maple Developer API
  version: 0.0.1
  description: >-
    Public API for POS and platform partners to integrate with Maple: granted
    locations and connections, the order loop (validation, notification,
    accept/deny, status updates), payment-link visibility, menu publishing, and
    HMAC-signed webhooks. Authenticate every request with a Bearer API key
    (`mpk_test_…` / `mpk_live_…`). The credential determines the environment:
    test-mode credentials only see test data, live-mode credentials only see
    live data.
servers:
  - url: https://api.maple.inc/v1
    description: Production
  - url: https://api.staging.maple.inc/v1
    description: Sandbox (development and testing)
security: []
tags:
  - name: General
    description: Service status and credential introspection.
  - name: Locations
    description: The restaurant locations your app has been granted access to.
  - name: Connections
    description: Become (or stop being) a granted location’s order receiver.
  - name: Menu
    description: Publish and read a connected location’s menu.
  - name: Delivery zones
    description: >-
      Manage a connected location’s delivery zones and check whether a
      coordinate is deliverable.
  - name: Orders
    description: 'The order loop: read orders, submit validation results, and decide orders.'
  - name: Bookings
    description: >-
      Bookings (rolling out per location): a location’s booking profile,
      availability, holds, bookings, venue verbs, configuration, and live floor.
  - name: Webhooks
    description: Event-type catalog, subscriptions, the event ledger, and replay.
paths:
  /locations/{locationId}/booking_floor:
    get:
      tags:
        - Bookings
      summary: Get booking floor
      description: >-
        Reads the live native floor, including current parties, holds, and the
        next claim within 24 hours. Requires bookings:read. Guest contact is
        limited to names and the last four phone digits. Read on demand or poll
        no more often than every 15 seconds; booking webhooks signal changes.
      operationId: developer-api-bookings.getBookingFloor
      parameters:
        - name: locationId
          in: path
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    enum:
                      - booking_floor
                  location_id:
                    type: string
                  livemode:
                    type: boolean
                  as_of:
                    type: string
                  time_zone:
                    type: string
                  tables:
                    type: array
                    items:
                      type: object
                      properties:
                        unit_id:
                          type: string
                        area_id:
                          type: string
                        area_name:
                          type: string
                        seats:
                          type: object
                          properties:
                            min:
                              anyOf:
                                - type: integer
                                - type: 'null'
                            max:
                              anyOf:
                                - type: integer
                                - type: 'null'
                          required:
                            - min
                            - max
                          additionalProperties: false
                        listed:
                          type: boolean
                        state:
                          type: string
                          enum:
                            - free
                            - seated
                            - reserved
                            - held
                            - maintenance
                        current:
                          anyOf:
                            - type: object
                              properties:
                                kind:
                                  type: string
                                  enum:
                                    - booking
                                    - hold
                                booking_id:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                party_size:
                                  type: integer
                                started_at:
                                  type: string
                                ends_at:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                guest:
                                  anyOf:
                                    - type: object
                                      properties:
                                        first_name:
                                          anyOf:
                                            - type: string
                                            - type: 'null'
                                        last_name:
                                          anyOf:
                                            - type: string
                                            - type: 'null'
                                        phone_last_four:
                                          anyOf:
                                            - type: string
                                            - type: 'null'
                                      required:
                                        - first_name
                                        - last_name
                                        - phone_last_four
                                      additionalProperties: false
                                    - type: 'null'
                              required:
                                - kind
                                - booking_id
                                - party_size
                                - started_at
                                - ends_at
                                - guest
                              additionalProperties: false
                            - type: 'null'
                        next:
                          anyOf:
                            - type: object
                              properties:
                                booking_id:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                starts_at:
                                  type: string
                                party_size:
                                  type: integer
                              required:
                                - booking_id
                                - starts_at
                                - party_size
                              additionalProperties: false
                            - type: 'null'
                      required:
                        - unit_id
                        - area_id
                        - area_name
                        - seats
                        - listed
                        - state
                        - current
                        - next
                      additionalProperties: false
                  areas:
                    type: array
                    items:
                      type: object
                      properties:
                        area_id:
                          type: string
                        name:
                          type: string
                        capacity:
                          anyOf:
                            - type: integer
                            - type: 'null'
                        seats_in_use:
                          type: integer
                      required:
                        - area_id
                        - name
                        - capacity
                        - seats_in_use
                      additionalProperties: false
                  summary:
                    type: object
                    properties:
                      tables_total:
                        type: integer
                      tables_busy:
                        type: integer
                      tables_out_of_service:
                        type: integer
                      off_plan_parties:
                        type: integer
                    required:
                      - tables_total
                      - tables_busy
                      - tables_out_of_service
                      - off_plan_parties
                    additionalProperties: false
                required:
                  - object
                  - location_id
                  - livemode
                  - as_of
                  - time_zone
                  - tables
                  - areas
                  - summary
                additionalProperties: false
        '401':
          description: DeveloperApiUnauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperApiUnauthorized'
        '403':
          description: DeveloperApiForbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperApiForbidden'
        '404':
          description: DeveloperApiNotFound
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperApiNotFound'
        '422':
          description: DeveloperApiUnprocessable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperApiUnprocessable'
        '429':
          description: DeveloperApiRateLimited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperApiRateLimited'
          headers:
            Retry-After:
              description: >-
                Seconds to wait before retrying; also returned as retry_after in
                the body.
              schema:
                type: integer
                minimum: 1
      security:
        - bearer: []
components:
  schemas:
    DeveloperApiUnauthorized:
      type: object
      properties:
        _tag:
          type: string
          enum:
            - DeveloperApiUnauthorized
        message:
          type: string
      required:
        - _tag
        - message
      additionalProperties: false
    DeveloperApiForbidden:
      type: object
      properties:
        _tag:
          type: string
          enum:
            - DeveloperApiForbidden
        code:
          type: string
          enum:
            - insufficient_scope
            - wrong_environment
        message:
          type: string
      required:
        - _tag
        - code
        - message
      additionalProperties: false
    DeveloperApiNotFound:
      type: object
      properties:
        _tag:
          type: string
          enum:
            - DeveloperApiNotFound
        message:
          type: string
      required:
        - _tag
        - message
      additionalProperties: false
    DeveloperApiUnprocessable:
      type: object
      properties:
        _tag:
          type: string
          enum:
            - DeveloperApiUnprocessable
        code:
          type: string
        message:
          type: string
        details:
          type: object
      required:
        - _tag
        - code
        - message
      additionalProperties: false
    DeveloperApiRateLimited:
      type: object
      properties:
        _tag:
          type: string
          enum:
            - DeveloperApiRateLimited
        message:
          type: string
        retry_after:
          anyOf:
            - type: number
            - type: string
              enum:
                - NaN
            - type: string
              enum:
                - Infinity
            - type: string
              enum:
                - '-Infinity'
      required:
        - _tag
        - message
        - retry_after
      additionalProperties: false
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: >-
        API key — `mpk_test_…` for the sandbox, `mpk_live_…` for production.
        Issued by Maple during partner onboarding.

````