> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product

> Get a product from your catalog

Get a product from your catalog. This includes products pushed via the [Commerce API](/concepts/custom-commerce), synced from integrations, and Stripe products with attached digital delivery files.

## Path Parameters

<ParamField path="productId" type="string" required>
  Your product identifier (the `productId` used when upserting) or the internal product ID returned by [List Products](/api-reference/products/list).
</ParamField>

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/products/SKU-PROTEIN-1KG" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "product": {
      "id": "prod_abc123",
      "productId": "SKU-PROTEIN-1KG",
      "provider": "api",
      "title": "Protein Powder",
      "priceCents": 8850,
      "currency": "USD",
      "inStock": true,
      "variants": [],
      "digitalDelivery": null
    }
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Invalid or missing API key"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Product not found"
  }
  ```
</ResponseExample>
