Examples for Pages-Endpoint

Pages and Database-Entries

// Returns a specific page
\Notion::pages()
        ->find($pageId);

// Returns the title of a specific page
\Notion::pages()
        ->find($pageId)
        ->getTitle();