curl --request GET \
--url https://api.syntalic.com/v1/analyst/price-bandsimport requests
url = "https://api.syntalic.com/v1/analyst/price-bands"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.syntalic.com/v1/analyst/price-bands', 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.syntalic.com/v1/analyst/price-bands",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.syntalic.com/v1/analyst/price-bands"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.syntalic.com/v1/analyst/price-bands")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.syntalic.com/v1/analyst/price-bands")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"node": "<string>",
"level": "root",
"products": 123,
"price_range": {
"p05": 123,
"median": 123,
"p95": 123
},
"band": {
"half_width_pct": 123,
"example": {
"price": 123,
"lower": 123,
"upper": 123
},
"inherited_from": "<string>"
},
"tiers": [
{
"name": "entry",
"upper_bound": 123,
"from": 123,
"to": 123,
"products": 123,
"brand_products": 123
}
]
}{
"type": "<string>",
"title": "Bad Request",
"status": 400,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Payment Required",
"status": 402,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Not Found",
"status": 404,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Too Many Requests",
"status": 429,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Internal Server Error",
"status": 500,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Price band and tiers for a category node
The price architecture of one shelf: the comparability window that defines ‘similarly priced’ there, and the shelf’s price tiers. Scoped by ladder NODE (a category path like ‘electronics/headphones’), because a band is a property of one shelf. The window is derived in log space from the shelf’s own robust spread over a 90-day window, so it is relative rather than a fixed dollar range - tight where a shelf clusters (video-game accessories run ±10%), wide where it spreads (car-care tools run ±60%). Tiers are equal-population, so ‘premium’ means the same thing on a 5−40 shelf and a 400−4,000 one. A shelf with too few products to define a distribution inherits its parent’s window (disclosed in band.inherited_from) with the tier ladder re-centred on its own median; a shelf where a fifth of products share one price reports fewer than five tiers rather than an empty one.
curl --request GET \
--url https://api.syntalic.com/v1/analyst/price-bandsimport requests
url = "https://api.syntalic.com/v1/analyst/price-bands"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.syntalic.com/v1/analyst/price-bands', 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.syntalic.com/v1/analyst/price-bands",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.syntalic.com/v1/analyst/price-bands"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.syntalic.com/v1/analyst/price-bands")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.syntalic.com/v1/analyst/price-bands")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"node": "<string>",
"level": "root",
"products": 123,
"price_range": {
"p05": 123,
"median": 123,
"p95": 123
},
"band": {
"half_width_pct": 123,
"example": {
"price": 123,
"lower": 123,
"upper": 123
},
"inherited_from": "<string>"
},
"tiers": [
{
"name": "entry",
"upper_bound": 123,
"from": 123,
"to": 123,
"products": 123,
"brand_products": 123
}
]
}{
"type": "<string>",
"title": "Bad Request",
"status": 400,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Payment Required",
"status": 402,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Not Found",
"status": 404,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Too Many Requests",
"status": 429,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"type": "<string>",
"title": "Internal Server Error",
"status": 500,
"detail": "<string>",
"instance": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Query Parameters
Ladder node as a category path — 'electronics', 'electronics/headphones', or a deeper rung.
Optional. Locate one brand within the tiers: each tier gains brand_products, the count of that brand's products in it. Omit for the market view.
1
