GET
/
product-feed
curl --request GET \
  --url https://api.treet-test.co/product-feed \
  --header 'X-Treet-Authentication-Key: <api-key>' \
  --header 'X-Treet-Client-Id: <api-key>'
{
  "url": "https://ucarecdn.com/a26b7199-3356-4054-a147-536f548f4059/full-treet-product-feed-generic-1713291107739.json",
  "version": 1
}

Additional Details

Rate Limits

This endpoint is rate-limited to 15 req/minute. Please note that it will not return different data unless the feed has been updated. It is advised to check for a new feed link once an hour, max.

Product Feed Data

The JSON file holds an array of Product Data objects, as typed below:

 {
  productID: string;
  productURL: string;
  productTitle: string;
  productDescription: string;
  size: string;
  image: string;
  price: number;
  brand: string;
  productStock: number;
  productAvailable: boolean;
  gender?: ('Women' | 'Men' | 'Kids' | 'Unisex' | 'All')[];
  condition: string;
  isBrandDirect?: string;
  updatedAt?: string;
  color?: string;
  shopifyTags?: string[];
  shopifyProductType?: string;
  categories?: string[];
  styles?: string[];
  currency?: Currency;
  shipFromCountry?: CountryCode;
  shipToCountries?: CountryCode[];
};

Please note that Treet may add more attributes to the Product Data object at their discretion and without prior notice. Existing attributes will not be deprecated without proper warning & versioning.

Authorizations

X-Treet-Client-Id
string
header
required
X-Treet-Authentication-Key
string
header
required

Response

200
application/json
listing response
url
string
required

Contains a link to the full product feed from Treet as a JSON file. Please note this file expires after 24 hours.

Example:

"https://ucarecdn.com/a26b7199-3356-4054-a147-536f548f4059/full-treet-product-feed-generic-1713291107739.json"

version
integer
required

Denotes the version of the API. Currently, only version 1 is available.

Example:

1