Skip to main content
GET
/
dashboard
/
api
/
v1
/
trade-items
/
{organization_id}
/
{gtin}
/
completeness
Get product completeness score
curl --request GET \
  --url https://www.closient.com/dashboard/api/v1/trade-items/{organization_id}/{gtin}/completeness \
  --header 'X-API-Key: <api-key>'
{
  "percentage": 50,
  "fields": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.closient.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

organization_id
string<shortuuid>
required

UUID of the organization that owns the product.

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

GTIN-8/12/13/14 of the product. Normalized to GTIN-14 by zero-padding before lookup.

Pattern: ^\d{8,14}$

Response

200 - application/json

OK

Field-by-field completeness breakdown for a single product.

percentage
integer
required

Overall completeness percentage 0-100, rounded. Computed as sum(fields[k].score * fields[k].weight) * 100.

Required range: 0 <= x <= 100
Example:

78

fields
Fields · object
required

Per-field score and weight, keyed by field group (name, description, brand, category, images, nutrition, certifications, offers, country). Stable keys safe for UI mapping.