# manufacturer Get a single manufacturer by ID ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { manufacturer(id: ID!) { seoDescription seoTitle seoKeywords id title productsCount products image url } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | id | ID | Yes | The ID of the manufacturer to retrieve | ## Return Type [Manufacturer](/reference/storefront/1.3.0/objects/manufacturer) - A product manufacturer, including its name and details. ## Example ```graphql { manufacturer(id: 12345) { id title image url seoTitle seoDescription productsCount } } ``` ## Related Types - [Manufacturer](/reference/storefront/1.3.0/objects/manufacturer)