Skip to main content
Retrieves a specific property item from a page. This is useful for accessing long property values (like long text or large relation lists) that may be paginated.

Method Signature

Parameters

page_id
string
required
The ID of the page containing the property (with or without dashes).
property_id
string
required
The ID or name of the property to retrieve. You can use either:
  • The property ID (e.g., "title", "%3E%5DWj")
  • The property name (e.g., "Name", "Status")
start_cursor
string
Used for pagination. If the property has more items than fit in a single response, use this cursor to fetch the next page of results.
page_size
number
The number of items to return per page. Maximum is 100 (default: 100).
auth
string
Bearer token for authentication. Overrides the client-level authentication.

Response

PropertyItemObjectResponse

For simple properties (number, select, checkbox, etc.), returns a single property item:
object
string
Always "property_item"
id
string
The ID of the property
type
string
The type of the property (e.g., "number", "select", "date")
[type]
any
The property value, keyed by the property type. For example, if type is "number", the value is in the number field.

PropertyItemListResponse

For paginated properties (title, rich_text, people, relation, rollup), returns a list response:
type
string
Always "property_item"
property_item
object
Contains the property type, ID, and pagination info
results
array
Array of property items for this page
next_cursor
string | null
Cursor to use for fetching the next page, or null if no more pages
has_more
boolean
Whether there are more results available

Examples

Retrieve a Simple Property

Retrieve a Title Property

Retrieve Different Property Types

Paginate Through Property Items

Retrieve Rich Text Property

Retrieve People Property

Retrieve Rollup Property

Helper Function for Pagination

Property Types

The following property types are supported:
  • Simple properties (single item response):
    • number, url, select, multi_select, status, date, email, phone_number
    • checkbox, files, created_by, created_time, last_edited_by, last_edited_time
    • formula, button, unique_id, verification, place
  • Paginated properties (list response):
    • title, rich_text, people, relation, rollup

Important Notes

For properties with long values (like long text or many relations), the response may be paginated. Check for has_more and use next_cursor to fetch additional pages.
You can use either the property ID or property name for the property_id parameter. Property IDs are more stable if you rename properties frequently.
Some computed properties (like rollup and formula) may take time to calculate. The SDK will return the current value, which may be outdated if the source data changed recently.

Use Cases

  • Access long text: Retrieve full content of rich text properties that exceed the normal page limit
  • List relations: Get all related pages for a relation property
  • Fetch user lists: Retrieve all people assigned to a property
  • Property-specific queries: Get a single property without fetching the entire page

See Also