List Markets
curl --request GET \
--url https://scrapebadger.com/v1/ebay/markets \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/ebay/markets"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/ebay/markets', 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://scrapebadger.com/v1/ebay/markets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://scrapebadger.com/v1/ebay/markets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/ebay/markets")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/ebay/markets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"markets": [
{
"code": "<string>",
"domain": "<string>",
"country": "<string>",
"currency": "<string>",
"locale": "<string>",
"name": "<string>",
"site_id": 123
}
]
}Reference
List Markets
List all supported eBay marketplaces with their domains, currencies, locales, and site ids.
GET
/
v1
/
ebay
/
markets
List Markets
curl --request GET \
--url https://scrapebadger.com/v1/ebay/markets \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/ebay/markets"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/ebay/markets', 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://scrapebadger.com/v1/ebay/markets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://scrapebadger.com/v1/ebay/markets"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/ebay/markets")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/ebay/markets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"markets": [
{
"code": "<string>",
"domain": "<string>",
"country": "<string>",
"currency": "<string>",
"locale": "<string>",
"name": "<string>",
"site_id": 123
}
]
}Response
Array of supported eBay marketplaces.
Show MarketInfo object
Show MarketInfo object
Market code (e.g.
US, GB, DE).eBay domain TLD to use in the
domain query parameter (e.g. com, co.uk).ISO 3166-1 alpha-2 country code.
ISO 4217 currency code used in this market.
BCP-47 locale (e.g.
en-US).Marketplace country name.
eBay legacy global site id.
Example Response
{
"markets": [
{ "code": "US", "domain": "com", "country": "US", "currency": "USD", "locale": "en-US", "name": "United States", "site_id": 0 },
{ "code": "GB", "domain": "co.uk", "country": "GB", "currency": "GBP", "locale": "en-GB", "name": "United Kingdom", "site_id": 3 },
{ "code": "DE", "domain": "de", "country": "DE", "currency": "EUR", "locale": "de-DE", "name": "Germany", "site_id": 77 },
{ "code": "AU", "domain": "com.au", "country": "AU", "currency": "AUD", "locale": "en-AU", "name": "Australia", "site_id": 15 }
]
}
Listing markets is a free reference endpoint (0 credits).
⌘I

