List trade items
List trade items (canonical GTIN records) with optional filtering by brand, category, claim status, country of origin, data source, or free-text search. Results are paginated; sort via ?ordering=product_name or ?ordering=-created (descending).
Authorizations
Query Parameters
Limit to trade items whose brand name matches this string (exact, case-insensitive).
Limit to trade items in this ProductCategory (UUID).
When true, return only claimed GTINs; when false, return only unclaimed. Omit to return both.
Limit to trade items whose country_of_origin matches this ISO 3166-1 alpha-2 code.
2Limit to trade items whose canonical record came from this data source.
crowd_sourced, claimed, imported, ai_extracted, brand_site_crawl, gtin1_authoritative, external_api, open_food_facts, usda_fdc, fda_ndc, affiliate_feed, datakick, common_crawl_wdc Free-text search across product name and brand. Matches are case-insensitive substring matches.
Sort field; prefix with - for descending order. Allowed: product_name, brand, created, confidence_score.
Page number (1-indexed).
x >= 1Number of items per page (max 100).
1 <= x <= 100Response
OK
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 envelope describing position within the full result set.
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}