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

# Get a product

> Get a published product by its public ID.

<ParamField header="x-boxpressd-key" type="string" required>
  Your developer application key.
</ParamField>

<ParamField path="id" type="string" required>
  An opaque public ID beginning with `product_`.
</ParamField>

```bash theme={null}
curl "https://api.boxpressd.com/v1/products/product_k9P4m" \
  --header "x-boxpressd-key: $BOXPRESSD_DEVELOPER_API_KEY"
```

Returns `{ "data": Product }`. A missing, unpublished, or invalid ID returns `404 not_found`.
