Endpoint Playground
Test Crawlora's Farfetch designers 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/designers?gender=<gender>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| gender | string | Yes | Department: women, men, kids |
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"count": 485,
"designers": [
{
"name": "A BATHING APE®",
"slug": "bape",
"url": "https://www.farfetch.com/shopping/women/bape/items.aspx"
},
{
"name": "Gucci",
"slug": "gucci",
"url": "https://www.farfetch.com/shopping/women/gucci/items.aspx"
}
]
}
}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 a department's full designer directory (name, slug, URL). Each slug is usable directly as the designer filter on GET /farfetch/search. Public data sourced from Farfetch's own designer-directory pages.
{
"code": 200,
"msg": "OK",
"data": {
"gender": "women",
"count": 485,
"designers": [
{
"name": "A BATHING APE®",
"slug": "bape",
"url": "https://www.farfetch.com/shopping/women/bape/items.aspx"
},
{
"name": "Gucci",
"slug": "gucci",
"url": "https://www.farfetch.com/shopping/women/gucci/items.aspx"
}
]
}
}curl "https://api.crawlora.net/api/v1/farfetch/designers?gender=<gender>" \
-H "x-api-key: $CRAWLORA_API_KEY"