# Zilfu — Queue

1 operation. Schemas referenced below are documented at https://zilfu.app/docs/api/schemas.md.

## Servers

- `https://zilfu.app/api`

## Operations

### List available queue slots

- **Method:** `GET`
- **Path:** `/spaces/{space}/queue`
- **Tags:** Queue

Returns up to 9 upcoming free slots from the space's schedule.

#### Parameters

##### `space` required

- **In:** `path`

The space ID

`integer`

#### Responses

##### Status: 200

###### Content-Type: application/json

**Any of:**

- **`data` (required)**

  `array`

  **Items:**

  - **`datetime` (required)**

    `string`

  - **`label` (required)**

    `string`

  - **`timestamp_ms` (required)**

    `string`

* **`data` (required)**

  `array`

  **Items:**

  `string`

**Example:**

```json
{
  "data": [
    {
      "datetime": "",
      "timestamp_ms": "",
      "label": ""
    }
  ]
}
```

##### Status: 401 Unauthenticated

###### Content-Type: application/json

- **`message` (required)**

  `string` — Error overview.

**Example:**

```json
{
  "message": ""
}
```

##### Status: 403 Authorization error

###### Content-Type: application/json

- **`message` (required)**

  `string` — Error overview.

**Example:**

```json
{
  "message": ""
}
```

##### Status: 404 Not found

###### Content-Type: application/json

- **`message` (required)**

  `string` — Error overview.

**Example:**

```json
{
  "message": ""
}
```
