Catalog coverage map (depth/quality per cell)
curl --request GET \
--url https://api.syntalic.com/v1/public/coverageimport requests
url = "https://api.syntalic.com/v1/public/coverage"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.syntalic.com/v1/public/coverage', 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/public/coverage",
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/public/coverage"
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/public/coverage")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.syntalic.com/v1/public/coverage")
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{
"items": [
{
"platform": "<string>",
"country": "<string>",
"category_root": "<string>",
"priced_product_count": 123,
"recent_priced_product_count": 123,
"known_brand_product_count": 123,
"quality_status": "<string>",
"is_serving_eligible": true,
"last_observed_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Public
Catalog coverage map (depth/quality per cell)
Zero-cost aggregate discovery endpoint. Coverage + freshness per (platform, country, category_root): priced/recent/known-brand product counts and quality_status (serving/thin/stale — computed from shelf volume and 90-day freshness, never from how the data is acquired), so an agent can gauge whether a paid query will hit deep data. Row-level product data remains on paid endpoints.
GET
/
v1
/
public
/
coverage
Catalog coverage map (depth/quality per cell)
curl --request GET \
--url https://api.syntalic.com/v1/public/coverageimport requests
url = "https://api.syntalic.com/v1/public/coverage"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.syntalic.com/v1/public/coverage', 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/public/coverage",
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/public/coverage"
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/public/coverage")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.syntalic.com/v1/public/coverage")
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{
"items": [
{
"platform": "<string>",
"country": "<string>",
"category_root": "<string>",
"priced_product_count": 123,
"recent_priced_product_count": 123,
"known_brand_product_count": 123,
"quality_status": "<string>",
"is_serving_eligible": true,
"last_observed_at": "2023-11-07T05:31:56Z"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Query Parameters
Filter to a country
Available options:
us, ca Filter to a platform (e.g. amazon, walmart)
Filter to a top-level category
Filter to a coverage tier
Available options:
serving, thin, stale Max results to return (default 200, min 1, max 1000)
Required range:
1 <= x <= 1000Pagination offset
Required range:
x >= 0
