SKU Bindings API
vtex · Company
SKU Bindings API API
Authentication
Sample Requests
Retrieves SKU Bindings administrative information using optional query params `sellerId`, `skuId`, `sellerSkuId` and `IsActive` to filter results and `size` to restrict the amount of results. > ℹ This path is an updated version of `/api/catalog_system/pvt/skuseller/admin`. ## Response body e
Hover any highlighted part to learn what it does
| Accept | application/json |
| Content-Type | application/json |
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin?size=1&skuId=1&isActive=true&sellerId=vtxkfj7352&sellerSkuId=71" \ -H "Accept: application/json" \ -H "Content-Type: application/json"
import requests
params = {
"size": "1",
"skuId": "1",
"isActive": "true",
"sellerId": "vtxkfj7352",
"sellerSkuId": "71"
}
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin');
url.searchParams.set('size', '1');
url.searchParams.set('skuId', '1');
url.searchParams.set('isActive', 'true');
url.searchParams.set('sellerId', 'vtxkfj7352');
url.searchParams.set('sellerSkuId', '71');
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin")
q := baseURL.Query()
q.Set("size", "1")
q.Set("skuId", "1")
q.Set("isActive", "true")
q.Set("sellerId", "vtxkfj7352")
q.Set("sellerSkuId", "71")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin")
uri.query = URI.encode_www_form({
"size" => "1",
"skuId" => "1",
"isActive" => "true",
"sellerId" => "vtxkfj7352",
"sellerSkuId" => "71"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Accept"] = "application/json"
req["Content-Type"] = "application/json"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/admin?" . http_build_query([
"size" => "1",
"skuId" => "1",
"isActive" => "true",
"sellerId" => "vtxkfj7352",
"sellerSkuId" => "71"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Accept: application/json",
"Content-Type: application/json"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieves SKU Bindings details by SKU ID. ## Response body example ```json [ { "Id": 48, "SellerId": "cosmetics1", "StockKeepingUnitId": 1, "SellerSkuId": "42", "IsActive": true, "LastUpdateDate": "2020-10-21T19:13:00.657", "
Hover any highlighted part to learn what it does
| Accept | application/json |
| Content-Type | application/json |
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}" \
-H "Accept: application/json" \
-H "Content-Type: application/json"import requests
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}';
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Accept"] = "application/json"
req["Content-Type"] = "application/json"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/catalog/pvt/skusellers/{skuId}";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Accept: application/json",
"Content-Type: application/json"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieves a paged list of SKU Bindings given a specific Seller ID. > ℹ This path is an updated version of `/api/catalog_system/pvt/skuseller/paged/sellerid/{sellerId}`. ## Response body example ```json [ { "SellerId": "vtxkfj7352", "StockKeepingUnitId": 121,
Hover any highlighted part to learn what it does
| Accept | application/json |
| Content-Type | application/json |
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}?page=1&size=2" \
-H "Accept: application/json" \
-H "Content-Type: application/json"import requests
params = {
"page": "1",
"size": "2"
}
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}');
url.searchParams.set('page', '1');
url.searchParams.set('size', '2');
const response = await fetch(url, {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}")
q := baseURL.Query()
q.Set("page", "1")
q.Set("size", "2")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Accept", "application/json")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}")
uri.query = URI.encode_www_form({
"page" => "1",
"size" => "2"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Accept"] = "application/json"
req["Content-Type"] = "application/json"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/vtex.local/SKU-Bindings-API/1.0/sku-binding/pvt/skuseller/paged/sellerid/{sellerId}?" . http_build_query([
"page" => "1",
"size" => "2"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Accept: application/json",
"Content-Type: application/json"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with SKU Bindings API?
SKU Bindings API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. SKU Bindings API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide