> For the complete documentation index, see [llms.txt](https://faq.finerymarkets.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.finerymarkets.com/api-reference/rest-api/qs-stream-management/qs-getstreams.md).

# qs/getStreams

**POST api/qs/getStreams**

Retrieves a list of all created quote streams.

### Request

{% tabs %}
{% tab title="Schema" %}

```json
{
}
```

{% endtab %}

{% tab title="Example" %}

```json
{
}
```

{% endtab %}
{% endtabs %}

#### Request Fields

This endpoint does not require any parameters.

### Response

{% tabs %}
{% tab title="Schema" %}

```json
{
  "streams": [
    {
      "streamId": <UUID>,
      "instrument": <string>,
      "takers": <array[Efx::ClientId]>
    }
  ]
}
```

{% endtab %}

{% tab title="Example" %}

```json
{
  "streams": [
    {
      "streamId": "1001c623-c99b-4a06-9577-fd91ae8b600f",
      "instrument": "BTC-EUR",
      "takers": [2]
    }
  ]
}
```

{% endtab %}
{% endtabs %}

#### Response Fields

| Field                 | Type                  | Description                                 |
| --------------------- | --------------------- | ------------------------------------------- |
| streams               | array                 | List of stream objects                      |
| streams\[].streamId   | UUID                  | Stream ID, required                         |
| streams\[].instrument | string                | Instrument name                             |
| streams\[].takers     | array\[Efx::ClientId] | Takers allowed to receive the stream        |
| streams\[].apiKey     | string                | API key the stream is attached to, optional |
