Skip to main content
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
ParameterRequiredDescription
productId✅The unique identifier of the product (ULID)
Headers
HeaderValue
AuthorizationBearer <access_token>

Example Request

BINARLY_PRODUCT_ID="01JQPGDX8QW0YJ0XEKV1EVG534"

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

Response

{
  "id": "products/01JQPGDX8QW0YJ0XEKV1EVG534",
  "name": "My Firmware Product",
  "description": "Production firmware for device X",
  "createTime": "2024-01-20T10:00:00Z",
  "author": "user@example.com"
}
FieldDescription
idFull product resource name
nameThe display name of the product
descriptionOptional product description
createTimeTimestamp when the product was created
authorUser or service that created the product