Endpoint Playground
Test Crawlora's Get GOAT search facet values 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/search/facets" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
"footwear",
"apparel",
"accessories",
"bags",
"collectibles",
"jewelry",
"home",
"media",
"sports",
"objects",
"other",
"art"
],
"colors": [
"black",
"white",
"blue",
"grey",
"green",
"red",
"multi-color",
"brown",
"pink",
"cream",
"tan",
"purple",
"yellow",
"orange",
"silver",
"gold",
"teal",
"copper"
],
"genders": [
"men",
"women",
"youth",
"infant"
],
"conditions": [
"new_no_defects",
"used",
"new_with_defects",
"goat_clean"
],
"product_types": [
"sneakers",
"sandals",
"cleats",
"boots",
"slip-ons"
],
"activities": [
"lifestyle",
"basketball",
"running",
"skateboarding"
],
"brands": [
"nike",
"adidas",
"new-balance",
"puma",
"supreme",
"air-jordan"
],
"brands_truncated": true,
"years": [
"2023",
"2024",
"2022",
"2025",
"2021",
"2020"
]
}
}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 the accepted values for goat_search's filter parameters: categories, colors, genders, conditions, brands, and years are read live from GOAT's own search API so a value GOAT adds is discoverable without any client-side change, while product_types and activities are served from a maintained list because GOAT exposes no live facet for them. brands is GOAT's top brands ordered by product count, not the complete brand list -- when brands_truncated is true, brands beyond the ones listed exist and remain valid goat_search values. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
"footwear",
"apparel",
"accessories",
"bags",
"collectibles",
"jewelry",
"home",
"media",
"sports",
"objects",
"other",
"art"
],
"colors": [
"black",
"white",
"blue",
"grey",
"green",
"red",
"multi-color",
"brown",
"pink",
"cream",
"tan",
"purple",
"yellow",
"orange",
"silver",
"gold",
"teal",
"copper"
],
"genders": [
"men",
"women",
"youth",
"infant"
],
"conditions": [
"new_no_defects",
"used",
"new_with_defects",
"goat_clean"
],
"product_types": [
"sneakers",
"sandals",
"cleats",
"boots",
"slip-ons"
],
"activities": [
"lifestyle",
"basketball",
"running",
"skateboarding"
],
"brands": [
"nike",
"adidas",
"new-balance",
"puma",
"supreme",
"air-jordan"
],
"brands_truncated": true,
"years": [
"2023",
"2024",
"2022",
"2025",
"2021",
"2020"
]
}
}curl "https://api.crawlora.net/api/v1/goat/search/facets" \
-H "x-api-key: $CRAWLORA_API_KEY"