Endpoint Playground
Test Crawlora's Farfetch categories 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/farfetch/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"genders": [
{
"gender": "women",
"categories": [
{
"name": "Clothing",
"slug": "clothing-1",
"url": "https://www.farfetch.com/shopping/women/gucci/clothing-1/items.aspx"
},
{
"name": "Bags",
"slug": "bags-purses-1",
"url": "https://www.farfetch.com/shopping/women/gucci/bags-purses-1/items.aspx"
},
{
"name": "Shoes",
"slug": "shoes-1",
"url": "https://www.farfetch.com/shopping/women/gucci/shoes-1/items.aspx"
},
{
"name": "Accessories",
"slug": "accessories-all-1",
"url": "https://www.farfetch.com/shopping/women/gucci/accessories-all-1/items.aspx"
},
{
"name": "Jewelry",
"slug": "jewellery-1",
"url": "https://www.farfetch.com/shopping/women/gucci/jewellery-1/items.aspx"
},
{
"name": "Lingerie & Nightwear",
"slug": "lingerie-hosiery-1",
"url": "https://www.farfetch.com/shopping/women/gucci/lingerie-hosiery-1/items.aspx"
},
{
"name": "Homeware",
"slug": "lifestyle-1",
"url": "https://www.farfetch.com/shopping/women/gucci/lifestyle-1/items.aspx"
}
]
},
{
"gender": "men",
"categories": [
{
"name": "Clothing",
"slug": "clothing-2",
"url": "https://www.farfetch.com/shopping/men/dolce-gabbana/clothing-2/items.aspx"
}
]
},
{
"gender": "kids",
"categories": []
}
]
}
}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 department's top-level category directory (name, slug, URL). Each slug is usable directly as the category filter on GET /farfetch/search. Public data sourced live from Farfetch's own listing pages.
{
"code": 200,
"msg": "OK",
"data": {
"genders": [
{
"gender": "women",
"categories": [
{
"name": "Clothing",
"slug": "clothing-1",
"url": "https://www.farfetch.com/shopping/women/gucci/clothing-1/items.aspx"
},
{
"name": "Bags",
"slug": "bags-purses-1",
"url": "https://www.farfetch.com/shopping/women/gucci/bags-purses-1/items.aspx"
},
{
"name": "Shoes",
"slug": "shoes-1",
"url": "https://www.farfetch.com/shopping/women/gucci/shoes-1/items.aspx"
},
{
"name": "Accessories",
"slug": "accessories-all-1",
"url": "https://www.farfetch.com/shopping/women/gucci/accessories-all-1/items.aspx"
},
{
"name": "Jewelry",
"slug": "jewellery-1",
"url": "https://www.farfetch.com/shopping/women/gucci/jewellery-1/items.aspx"
},
{
"name": "Lingerie & Nightwear",
"slug": "lingerie-hosiery-1",
"url": "https://www.farfetch.com/shopping/women/gucci/lingerie-hosiery-1/items.aspx"
},
{
"name": "Homeware",
"slug": "lifestyle-1",
"url": "https://www.farfetch.com/shopping/women/gucci/lifestyle-1/items.aspx"
}
]
},
{
"gender": "men",
"categories": [
{
"name": "Clothing",
"slug": "clothing-2",
"url": "https://www.farfetch.com/shopping/men/dolce-gabbana/clothing-2/items.aspx"
}
]
},
{
"gender": "kids",
"categories": []
}
]
}
}curl "https://api.crawlora.net/api/v1/farfetch/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"