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

# Get Product

Retrieve detailed information about a specific product. Use this endpoint to verify product details or retrieve metadata like creation time.

## When to Use This Endpoint

Use this endpoint when you have a `productId` and need to:

* Verify the product exists.
* Retrieve the product's full name or metadata.
* Debug permissions or access.

## Request

**Endpoint**

```
GET <BINARLY_API_URL>/api/v4/products/{productId}
```

**Path Parameters**

| Parameter   | Required | Description                                 |
| ----------- | -------- | ------------------------------------------- |
| `productId` | ✅        | The unique identifier of the product (ULID) |

**Headers**

| Header          | Value                   |
| --------------- | ----------------------- |
| `Authorization` | `Bearer <access_token>` |

## Example Request

```bash theme={null}
BINARLY_PRODUCT_ID="01JQPGDX8QW0YJ0XEKV1EVG534"

curl -s \
  -H "Authorization: Bearer ${TOKEN}" \
  "${BINARLY_API_URL}/api/v4/products/${BINARLY_PRODUCT_ID}"
```

## Response

```json theme={null}
{
  "id": "products/01JQPGDX8QW0YJ0XEKV1EVG534",
  "name": "My Firmware Product",
  "description": "Production firmware for device X",
  "createTime": "2024-01-20T10:00:00Z",
  "author": "user@example.com"
}
```

| Field         | Description                              |
| ------------- | ---------------------------------------- |
| `id`          | Full product resource name               |
| `name`        | The display name of the product          |
| `description` | Optional product description             |
| `createTime`  | Timestamp when the product was created   |
| `author`      | User or service that created the product |
