curl --request POST \
--url https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"q": "<string>",
"filter_variant_options": {},
"product_id": [
"<string>"
],
"id": [
"<string>"
],
"has_media": true,
"returnable": true,
"wholesale_price_min": 123,
"wholesale_price_max": 123,
"retail_price_min": 123,
"retail_price_max": 123,
"include_unavailable": false,
"currency_code": "USD",
"offset": 0,
"limit": 50,
"order_by": "created_on",
"order": "desc"
}
'import requests
url = "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query"
payload = {
"q": "<string>",
"filter_variant_options": {},
"product_id": ["<string>"],
"id": ["<string>"],
"has_media": True,
"returnable": True,
"wholesale_price_min": 123,
"wholesale_price_max": 123,
"retail_price_min": 123,
"retail_price_max": 123,
"include_unavailable": False,
"currency_code": "USD",
"offset": 0,
"limit": 50,
"order_by": "created_on",
"order": "desc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
q: '<string>',
filter_variant_options: {},
product_id: ['<string>'],
id: ['<string>'],
has_media: true,
returnable: true,
wholesale_price_min: 123,
wholesale_price_max: 123,
retail_price_min: 123,
retail_price_max: 123,
include_unavailable: false,
currency_code: 'USD',
offset: 0,
limit: 50,
order_by: 'created_on',
order: 'desc'
})
};
fetch('https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'q' => '<string>',
'filter_variant_options' => [
],
'product_id' => [
'<string>'
],
'id' => [
'<string>'
],
'has_media' => true,
'returnable' => true,
'wholesale_price_min' => 123,
'wholesale_price_max' => 123,
'retail_price_min' => 123,
'retail_price_max' => 123,
'include_unavailable' => false,
'currency_code' => 'USD',
'offset' => 0,
'limit' => 50,
'order_by' => 'created_on',
'order' => 'desc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query"
payload := strings.NewReader("{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}"
response = http.request(request)
puts response.read_body{
"variants": [
{
"id": "<string>",
"sku": "<string>",
"product_type": "<string>",
"wholesale_price": 123,
"retail_price": 123,
"quantity": 123,
"variant_options": {},
"filter_variant_options": {}
}
],
"offset": 123,
"limit": 123,
"total": 123
}Query Watch Variants
Query the watch marketplace using filters, free-text search, and pagination.
filter_variant_options accepts any watch attribute key (e.g. brand,
model, style, case_material, dial_color) — see
/api/v3/product_filters?product_type=watch for the current set of
supported keys and their allowed values.
The vendor_id filter is reserved for internal admin use and is
rejected for merchant/API-key callers.
curl --request POST \
--url https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"q": "<string>",
"filter_variant_options": {},
"product_id": [
"<string>"
],
"id": [
"<string>"
],
"has_media": true,
"returnable": true,
"wholesale_price_min": 123,
"wholesale_price_max": 123,
"retail_price_min": 123,
"retail_price_max": 123,
"include_unavailable": false,
"currency_code": "USD",
"offset": 0,
"limit": 50,
"order_by": "created_on",
"order": "desc"
}
'import requests
url = "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query"
payload = {
"q": "<string>",
"filter_variant_options": {},
"product_id": ["<string>"],
"id": ["<string>"],
"has_media": True,
"returnable": True,
"wholesale_price_min": 123,
"wholesale_price_max": 123,
"retail_price_min": 123,
"retail_price_max": 123,
"include_unavailable": False,
"currency_code": "USD",
"offset": 0,
"limit": 50,
"order_by": "created_on",
"order": "desc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
q: '<string>',
filter_variant_options: {},
product_id: ['<string>'],
id: ['<string>'],
has_media: true,
returnable: true,
wholesale_price_min: 123,
wholesale_price_max: 123,
retail_price_min: 123,
retail_price_max: 123,
include_unavailable: false,
currency_code: 'USD',
offset: 0,
limit: 50,
order_by: 'created_on',
order: 'desc'
})
};
fetch('https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'q' => '<string>',
'filter_variant_options' => [
],
'product_id' => [
'<string>'
],
'id' => [
'<string>'
],
'has_media' => true,
'returnable' => true,
'wholesale_price_min' => 123,
'wholesale_price_max' => 123,
'retail_price_min' => 123,
'retail_price_max' => 123,
'include_unavailable' => false,
'currency_code' => 'USD',
'offset' => 0,
'limit' => 50,
'order_by' => 'created_on',
'order' => 'desc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query"
payload := strings.NewReader("{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-staging.unbridaled.ai/api/v3/product_variants/watches/query")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"q\": \"<string>\",\n \"filter_variant_options\": {},\n \"product_id\": [\n \"<string>\"\n ],\n \"id\": [\n \"<string>\"\n ],\n \"has_media\": true,\n \"returnable\": true,\n \"wholesale_price_min\": 123,\n \"wholesale_price_max\": 123,\n \"retail_price_min\": 123,\n \"retail_price_max\": 123,\n \"include_unavailable\": false,\n \"currency_code\": \"USD\",\n \"offset\": 0,\n \"limit\": 50,\n \"order_by\": \"created_on\",\n \"order\": \"desc\"\n}"
response = http.request(request)
puts response.read_body{
"variants": [
{
"id": "<string>",
"sku": "<string>",
"product_type": "<string>",
"wholesale_price": 123,
"retail_price": 123,
"quantity": 123,
"variant_options": {},
"filter_variant_options": {}
}
],
"offset": 123,
"limit": 123,
"total": 123
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Search query to filter by SKU, vendor SKU, product title/description, brand, model, or reference number.
Watch attribute filters, e.g. {"brand": "Rolex"}. See /api/v3/product_filters?product_type=watch for supported keys/values.
Product ID(s) to filter by.
Variant ID(s) to filter by.
Include sold/out-of-stock variants. Always true when id is provided.
Currency code for price conversion (e.g. USD, EUR, GBP).
asc, desc