# 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/v1/objects/page) - Describes a page with metadata, content, and SEO information. ## Example ```graphql { page(id: 12345) { id title handle content url seoTitle seoDescription seoKeywords isStatic createdAt updatedAt } } ``` ## Related Types - [Page](/reference/storefront/v1/objects/page)