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

# Continue Paged Stream

> Request the next page of data when a paged stream response includes a next field.

<Note>Public channel. Connect to: `wss://wss.prime.kraken.com/ws/v1`</Note>

If you request a stream that is paged, the data on the stream will be delivered with a `next` field populated. When this field is present, request the next set of data with the structure below. The response continues as with the original stream.

## Request

<Tabs>
  <Tab title="Request Schema">
    <ParamField path="reqid" type="number" required>
      The request ID to continue the page. Must match the original request ID from the [Subscribe](/institutional/api-reference/prime-websocket/subscribe) request.
    </ParamField>

    <ParamField path="type" type="string" required>
      Request type for continuing the paged stream. Value: `page`
    </ParamField>

    <ParamField path="streams" type="array" required>
      Streams to continue paging.

      <Expandable title="properties">
        <ParamField path="name" type="string" required>
          Subscription name to continue the page.
        </ParamField>

        <ParamField path="after" type="string" required>
          Delivered `next` value from the paged stream payload.
        </ParamField>
      </Expandable>
    </ParamField>
  </Tab>

  <Tab title="Example">
    ```json theme={null}
    {
      "reqid": 3,
      "type": "page",
      "streams": [
        {
          "name": "Trade",
          "after": "aGVsbG8="
        }
      ]
    }
    ```
  </Tab>
</Tabs>

## Response

The response structure remains the same as the original subscription, with additional data continuing from where the previous page ended.

<Tabs>
  <Tab title="Response Schema">
    Same structure as the original subscription response, with continuing data and potentially another `next` field if more pages are available.
  </Tab>

  <Tab title="Example">
    ```json theme={null}
    {
      "reqid": 3,
      "type": "Trade",
      "data": [],
      "page": true
    }
    ```
  </Tab>
</Tabs>
