---
title: "Get view query results"
method: GET
path: "/v1/views/{view_id}/queries/{query_id}"
tags: ["Views"]
---

# Get view query results

`GET /v1/views/{view_id}/queries/{query_id}`

## Path parameters

- `view_id` string, required
- `query_id` string, required

## Query parameters

- `start_cursor` string — If supplied, this endpoint will return a page of results starting after the cursor provided.
- `page_size` integer — The number of results to return per page. Maximum: 100

## Headers

- `Notion-Version` '2026-03-11', required

## Response `200`

- object
  - `object` 'list', required — Always `list`
  - `next_cursor` string, uuid, required
  - `has_more` boolean, required
  - `results` PartialPageObjectResponse[], required
    - `object` 'page', required — The page object type name.
    - `id` string, uuid, required
  - `type` 'page', required — Always `page`
  - `page` EmptyObject, required
  - `request_status` RequestStatusResponse
    - `type` 'complete' | 'incomplete', required — Whether the result set is complete or incomplete. `incomplete` means the response does not include all rows that match the query parameters (e.g. due to a server-side pagination depth limit).
    - `incomplete_reason` 'query_result_limit_reached' — Why the result set is incomplete. Only present when `type` is `incomplete`.

## Other responses

- `400`
- `401`
- `403`
- `404`
- `406`
- `409`
- `429`
- `500`
- `503`
- `504`
- `529`

---

[API](https://skmtc.net/notion/apis/notion-api.md) · [All operations](https://skmtc.net/notion/apis/notion-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/notion/notion-api/versions/551da43bb186/schema)
