Endpoint Playground
Test Crawlora's Get GOAT countries API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/goat/countries" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"country_code": "US",
"name": "United States",
"display_name": "United States",
"flag": "🇺🇸",
"phone_code": "1",
"currency": "USD",
"size_unit": "us",
"ships_to": true,
"returns_from": true,
"tax_included": false
},
{
"country_code": "JP",
"name": "Japan",
"local_name": "日本",
"display_name": "Japan",
"flag": "🇯🇵",
"phone_code": "81",
"currency": "JPY",
"size_unit": "us",
"ships_to": true,
"returns_from": true,
"tax_included": true
}
],
"total": 249,
"ships_to_total": 170
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns every country GOAT recognizes -- the accepted values for GET /goat/product/{slug}'s country_code parameter -- with the currency and size unit (us, uk, eu) GOAT localizes to for each, plus whether GOAT ships and accepts returns there. Every country is listed, not only the shippable ones, because country_code localizes pricing and is accepted for all of them; filter on ships_to if you want only GOAT's shipping destinations. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"country_code": "US",
"name": "United States",
"display_name": "United States",
"flag": "🇺🇸",
"phone_code": "1",
"currency": "USD",
"size_unit": "us",
"ships_to": true,
"returns_from": true,
"tax_included": false
},
{
"country_code": "JP",
"name": "Japan",
"local_name": "日本",
"display_name": "Japan",
"flag": "🇯🇵",
"phone_code": "81",
"currency": "JPY",
"size_unit": "us",
"ships_to": true,
"returns_from": true,
"tax_included": true
}
],
"total": 249,
"ships_to_total": 170
}
}curl "https://api.crawlora.net/api/v1/goat/countries" \
-H "x-api-key: $CRAWLORA_API_KEY"