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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get Notion page property

> Retrieve one page property, including paginated property values.

`notion.getPageProperty` retrieve one page property, including paginated property values.

## Example

```ts automations/notion-get-page-property.automation.ts theme={null}
import { automation, onSchedule } from "automate.ax"
import { notion } from "automate.ax/notion"

export default automation("Get Notion page property", () => {
  onSchedule({ schedule: "0 9 * * *" })

  notion.getPageProperty({
    page_id: "page-id",
    property_id: "property-id",
    page_size: 50,
  })
})
```

## Inputs

Provide `page_id` and `property_id`. Optional `start_cursor` and `page_size` paginate title, rich-text, people, relation, and roll-up values. Every input accepts a compatible signal, and an optional second argument can select a named account.

## Output

Returns a typed `property_item` or a `list` of property items, depending on the property type, including roll-up values.
