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

# Get Table

> Get a specific F&B table with active orders

Get a specific table by its table number, including all active orders currently assigned to that table.

## Request

```bash theme={null}
curl -X GET "https://api.series.hr/fnb/get-table/T1" \
  -H "apikey: YOUR_API_KEY"
```

## Path Parameters

<ParamField path="tableNumber" type="string" required>
  The table number to look up.
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "WorkspaceId": "a7d5339a-5531-4336-99c6-6f3249c9ac20",
      "WorkspaceName": "Café Series",
      "Table": {
        "Id": "tbl-1",
        "TableNumber": "T1",
        "Name": "Window Seat",
        "Capacity": 4,
        "Status": "available",
        "EffectiveStatus": "occupied",
        "ActiveOrders": [
          {
            "Id": "1717027200000",
            "Customer": {
              "UserId": 714760171,
              "Username": "builderman",
              "DisplayName": "Builderman",
              "AvatarUrl": "https://tr.rbxcdn.com/..."
            },
            "OrderType": "dine-in",
            "TableNumber": "T1",
            "OrderNumber": "12",
            "Items": [
              {
                "MenuItemId": "item-1",
                "Name": "Espresso",
                "Quantity": 2,
                "Price": 25,
                "Notes": ""
              }
            ],
            "Status": "preparing",
            "ClaimStatus": "claimed",
            "ClaimedBy": {
              "UserId": 1,
              "Username": "Roblox",
              "DisplayName": "Roblox",
              "AvatarUrl": "https://tr.rbxcdn.com/...",
              "ClaimedAt": "2026-04-05T12:00:00.000Z"
            },
            "Total": 50,
            "CreatedAt": "2026-04-05T11:30:00.000Z",
            "CreatedBy": "714760171"
          }
        ]
      }
    }
  }
  ```
</ResponseField>

## Status Codes

* `200`: Table returned successfully
* `401`: API key is required or invalid
* `403`: F\&B module is disabled or workspace access is denied
* `404`: Table not found


## OpenAPI

````yaml GET /fnb/get-table/{tableNumber}
openapi: 3.0.0
info:
  title: Series API
  version: 1.0.0
  description: >-
    Series API — a free REST API by Sailboat Games, LLC that lets Roblox
    communities programmatically manage workspaces, staff, sessions, time-off
    and activity data.
  contact:
    name: Sailboat Games, LLC.
    email: admin@sailboatgames.com
servers:
  - url: https://api.series.hr
    description: Production API
security:
  - ApiKeyAuth: []
paths:
  /fnb/get-table/{tableNumber}:
    get:
      tags:
        - Food & Beverage
      summary: Get table details
      description: >-
        Get a specific table by table number, including any active orders for
        that table.
      parameters:
        - name: tableNumber
          in: path
          required: true
          schema:
            type: string
          description: The table number to look up
      responses:
        '200':
          description: Table details
        '401':
          description: API key is required
        '403':
          description: F&B module disabled or access denied
        '404':
          description: Table not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Pass your API key in the `apikey` header. Alternatively, the `x-api-key`
        header is also accepted.

````