--- title: article - Storefront API description: Fetch a specific Article by its ID. api_version: 2025-01 api_name: storefront type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/storefront/2025-01/queries/article' md: 'https://shopify.dev/docs/api/storefront/2025-01/queries/article.md' --- # article query Fetch a specific Article by its ID. ## Arguments * id [ID!](https://shopify.dev/docs/api/storefront/2025-01/scalars/ID) required The ID of the `Article`. *** ## Possible returns * Article [Article](https://shopify.dev/docs/api/storefront/2025-01/objects/Article) An article in an online store blog. *** ## Examples * ### article reference ## Query Reference ```graphql { article(id) { # article fields } } ```