# manufacturerByHandle Get a single manufacturer by handle ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { manufacturerByHandle(handle: String!) { seoDescription seoTitle seoKeywords id title productsCount products image url } } ``` ## Arguments | Argument | Type | Required | Description | |----------|------|----------|-------------| | handle | String | Yes | The handle of the manufacturer to retrieve | ## Return Type [Manufacturer](/reference/storefront/v1/objects/manufacturer) - Describes a manufacturer. ## Example ```graphql query { manufacturerByHandle(handle: "acme-corp") { id title seoTitle seoDescription seoKeywords productsCount image url } } ``` ## Related Types - [Manufacturer](/reference/storefront/v1/objects/manufacturer)