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