Skip to main content
GET
/
products
/
api
/
v1
/
products
List claimed products
curl --request GET \
  --url https://www.closient.com/products/api/v1/products/ \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "gtin": "<string>",
      "product_name": "<string>",
      "is_claimed": true,
      "data_source": "crowd_sourced",
      "confidence_score": 0.5,
      "field_confidence": {},
      "metadata": {},
      "brand": "",
      "manufacturer": "",
      "description": "",
      "image_url": "",
      "country_of_origin": "",
      "net_content": "",
      "net_content_value": 123,
      "net_content_uom": "MLT",
      "owner_id": "<string>",
      "claim_verification_status": "unverified",
      "length": 123,
      "length_uom": "",
      "width": 123,
      "width_uom": "",
      "height": 123,
      "height_uom": "",
      "depth": 123,
      "depth_uom": "",
      "gross_weight": 123,
      "gross_weight_uom": "",
      "net_weight": 123,
      "net_weight_uom": "",
      "gpc_brick_code": "",
      "gpc_class_code": "",
      "gpc_family_code": "",
      "gpc_segment_code": ""
    }
  ],
  "pagination": {
    "page": 2,
    "page_size": 2,
    "total_count": 1,
    "total_pages": 2,
    "has_next": true,
    "has_previous": true
  }
}

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

Query Parameters

organization_id
string
required

UUID of the Organization whose claimed products should be listed. Caller must have visibility into the organization.

page
integer
default:1

Page number (1-indexed).

Required range: x >= 1
page_size
integer
default:25

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

200 - application/json

OK

data
ProductOut · object[]
required

Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.

pagination
PaginationMeta · object
required

Pagination envelope describing position within the full result set.

Example:
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}