Skip to main content
GET
/
products
/
api
/
v1
/
browse
/
products
/
{id}
Get product detail
curl --request GET \
  --url https://www.closient.com/products/api/v1/browse/products/{id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "gtin": "<string>",
  "is_claimed": true,
  "created": "2023-11-07T05:31:56Z",
  "product_name": "",
  "brand": "",
  "description": "",
  "owner_id": "<string>"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string<shortuuid>
required

URL-safe short identifier for the product (as returned in ProductBrowseOut.id).

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$

Response

OK

Compact product record returned by the public browse endpoints.

id
string<shortuuid>
required

Internal product identifier (UUID). Stable for the lifetime of the GTIN.

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$
gtin
string
required

Normalized GTIN-14 (zero-padded). Stable across the catalog regardless of input format.

Required string length: 14
Pattern: ^\d{14}$
is_claimed
boolean
required

True when the GTIN has been claimed by a brand owner (i.e. the linked Brand belongs to an Organization).

created
string<date-time>
required

ISO 8601 timestamp of when the product record was created in Closient.

product_name
string
default:""

Display name of the product as marketed on the packaging.

brand
string
default:""

Brand name resolved from the linked Brand record. Empty string when no brand is linked.

description
string
default:""

Long-form description of the product. May be empty.

owner_id
string<shortuuid> | null

URL-safe 22-character shortuuid encoding of the row's UUID primary key. Stable across the row's lifetime; suitable for sharing in URLs, log lines, and external SDK clients. Accepted on input as either the shortuuid form or the canonical UUID form (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$