# page Get a single page by ID ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { page(id: ID!) { handle seoDescription seoTitle seoKeywords url title id isStatic content createdAt updatedAt } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | id | ID | Yes | The ID of the page to retrieve | ## Return Type [Page](/reference/storefront/1.3.0/objects/page) - A static or dynamic store page, including content, SEO information, and hierarchy. ## Example ```graphql { page(id: 12345) { id title handle url content seoTitle seoDescription seoKeywords isStatic createdAt updatedAt } } ``` ## Related Types - [Page](/reference/storefront/1.3.0/objects/page) - ID