# article Get a single article by ID ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { article(id: ID!) { id title content summary handle headerImage author blog comments commentsCount commentsAreEnabled commentsRequireAccount commentsRequireApproval isPublished accountOwner url createdAt updatedAt seoTitle seoDescription seoKeywords metafields metafield } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | id | ID | Yes | The ID of the article to retrieve | ## Return Type [Article](/reference/storefront/1.3.0/objects/article) - Represents an article object with content, author, and comment information. ## Example ```graphql { article(id: 12345) { id title content summary handle headerImage seoTitle seoDescription author { name } blog { title } comments { id content } commentsCount commentsAreEnabled isPublished url createdAt updatedAt } } ``` ## Related Types - [Article](/reference/storefront/1.3.0/objects/article)