Skip to main content
GET
/
retailers
List Retailers
curl --request GET \
  --url https://api.zinc.com/retailers
import requests

url = "https://api.zinc.com/retailers"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.zinc.com/retailers', 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.zinc.com/retailers",
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.zinc.com/retailers"

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.zinc.com/retailers")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.zinc.com/retailers")

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
{
  "retailers": [
    {
      "retailer": "amazon",
      "display_name": "Amazon",
      "supported": true,
      "base_url": "amazon.com",
      "supported_countries": ["US", "DE", "UK"],
      "free_shipping": true,
      "free_shipping_threshold_cents": 2500
    },
    {
      "retailer": "walmart",
      "display_name": "Walmart",
      "supported": true,
      "base_url": "walmart.com",
      "supported_countries": ["US"],
      "free_shipping": true,
      "free_shipping_threshold_cents": 3500
    }
  ],
  "total": 2
}
GET /retailers is the public “what do you support?” catalog. It returns one flat object per retailer brand with its identifier, domain, the countries Zinc ships to, and the free-shipping policy. No authentication required — no API key, no MPP payment.

Notes

  • International marketplaces (e.g. amazon.com / amazon.de) are grouped under a single brand, with each country listed in supported_countries (ISO 3166-1 alpha-2; defaults to ["US"]).
  • free_shipping indicates whether free shipping is offered either unconditionally or above free_shipping_threshold_cents. A null threshold means there is no minimum.
  • Orders are Zinc-managed by default (no retailer account needed), so account and guest-checkout details are omitted from this catalog.
  • Use limit / offset to page through results (default limit 100, max 1000), and name to filter by a case-insensitive partial match.
{
  "retailers": [
    {
      "retailer": "amazon",
      "display_name": "Amazon",
      "supported": true,
      "base_url": "amazon.com",
      "supported_countries": ["US", "DE", "UK"],
      "free_shipping": true,
      "free_shipping_threshold_cents": 2500
    },
    {
      "retailer": "walmart",
      "display_name": "Walmart",
      "supported": true,
      "base_url": "walmart.com",
      "supported_countries": ["US"],
      "free_shipping": true,
      "free_shipping_threshold_cents": 3500
    }
  ],
  "total": 2
}

Query Parameters

limit
integer
default:100

Number of retailers to return

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of retailers to skip

Required range: x >= 0
name
string | null

Filter by name (case-insensitive partial match)

Response

Successful Response

Public supported-retailer catalog.

retailers
PublicRetailer · object[]
required
total
integer
required