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

# GET /Resources/booking-statuses

> Retrieve all available booking status codes for your NowBookIt location.

Retrieve all available booking status codes for your NowBookIt location.

<ParamField header="X-API-KEY" type="string" required>Your API key</ParamField>

<CodeGroup>
  ```shell curl theme={null}
  curl --location '[BASE_URL]/Resources/booking-statuses' \
  --header 'X-API-KEY: your_api_key_here'
  ```
</CodeGroup>

<Tip>
  Use the `code` field value when setting `status` in booking endpoints like `POST /Bookings`, `PATCH /Bookings/{id}/updatestatus`, or `POST /Sales`.
</Tip>

Response is an array of BookingStatus objects.

| Field        | Type   | Description                                          |
| ------------ | ------ | ---------------------------------------------------- |
| `statusType` | string | Category of status (e.g. `standard`)                 |
| `code`       | string | Machine-readable status code — use this in API calls |
| `name`       | string | Human-readable label                                 |

**Example 200 Response**

```json theme={null}
[
  { "statusType": "standard", "code": "CONFIRMED", "name": "Confirmed" },
  { "statusType": "standard", "code": "ARRIVED", "name": "Arrived" },
  { "statusType": "standard", "code": "SEATED", "name": "Seated" },
  { "statusType": "standard", "code": "CANCELLED", "name": "Cancelled" }
]
```

| Status | Description                         |
| ------ | ----------------------------------- |
| `200`  | Statuses returned                   |
| `400`  | API key not associated with a venue |
| `400`  | `No Venue Subscribed to your App.`  |
| `401`  | X-API-KEY missing or invalid        |
| `429`  | Rate limit exceeded                 |


## OpenAPI

````yaml GET /Resources/booking-statuses
openapi: 3.0.4
info:
  title: NowBookIt IPOS Partner API
  description: >-
    REST API for integrating your POS or external system with NowBookIt's
    reservation, sales, and gift card platform.
  version: v1
  contact:
    email: platform.integrations@nowbookit.com
servers:
  - url: https://ipos.dev.nowbookit.com
    description: Development
  - url: https://ipos.nowbookit.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /Resources/booking-statuses:
    get:
      tags:
        - Resources
      summary: Get Booking Statuses
      operationId: getBookingStatuses
      parameters:
        - name: X-API-KEY
          in: header
          description: API Key authentication header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of booking statuses
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BookingStatus'
        '400':
          description: Returns 400 BadRequest when passed invalid parameters
        '404':
          description: Returns 404 Not Found when trying to find Booking from NBI.
        '500':
          description: An error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BookingStatus:
      type: object
      properties:
        statusType:
          type: string
          nullable: true
        code:
          type: string
          description: The Booking Status Code.
          nullable: true
        name:
          type: string
          description: The Booking Status string.
          nullable: true
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````