Endpoint Playground
Test Crawlora's Farfetch product 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/product?gender=<gender>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| gender | string | Yes | Department: women, men, kids | |
| slug | string | Yes | Product URL slug from a search result's id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "37690086",
"gender": "women",
"name": "slide sandals with double G",
"brand": "Gucci",
"color": "Black",
"description": "Gucci slide sandals with double G | Black | This slide sandal incorporates Double G hardware and GG canvas. | black nappa leather | gold-toned hardware | leather lining | double g | square toe | leather sole | flat",
"images": [
"https://cdn-images.farfetch-contents.com/37/69/00/86/37690086_71331779_1000.jpg?ov=true",
"https://cdn-images.farfetch-contents.com/37/69/00/86/37690086_71332738_1000.jpg?ov=true"
],
"category_path": [
{
"name": "Gucci",
"slug": "gucci",
"url": "https://www.farfetch.com/shopping/women/gucci/items.aspx"
},
{
"name": "Shoes",
"slug": "shoes-1",
"url": "https://www.farfetch.com/shopping/women/gucci/shoes-1/items.aspx"
},
{
"name": "Flat Sandals",
"slug": "flat-sandals-1",
"url": "https://www.farfetch.com/shopping/women/gucci/flat-sandals-1/items.aspx"
}
],
"variants": [
{
"sku": "37690086-23",
"size": "36.5",
"price": 766,
"currency": "USD",
"in_stock": true
},
{
"sku": "37690086-25",
"size": "37.5",
"price": 766,
"currency": "USD",
"in_stock": true
}
],
"source_url": "https://www.farfetch.com/shopping/women/gucci-slide-sandals-with-double-g-item-37690086.aspx",
"fetched_at": "2026-09-09T15:35:00Z"
}
}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 Farfetch product's full detail: name, brand, color, description, images, category breadcrumb, and every size variant with its own price and availability. Public data sourced from Farfetch's own product pages.
{
"code": 200,
"msg": "OK",
"data": {
"id": "37690086",
"gender": "women",
"name": "slide sandals with double G",
"brand": "Gucci",
"color": "Black",
"description": "Gucci slide sandals with double G | Black | This slide sandal incorporates Double G hardware and GG canvas. | black nappa leather | gold-toned hardware | leather lining | double g | square toe | leather sole | flat",
"images": [
"https://cdn-images.farfetch-contents.com/37/69/00/86/37690086_71331779_1000.jpg?ov=true",
"https://cdn-images.farfetch-contents.com/37/69/00/86/37690086_71332738_1000.jpg?ov=true"
],
"category_path": [
{
"name": "Gucci",
"slug": "gucci",
"url": "https://www.farfetch.com/shopping/women/gucci/items.aspx"
},
{
"name": "Shoes",
"slug": "shoes-1",
"url": "https://www.farfetch.com/shopping/women/gucci/shoes-1/items.aspx"
},
{
"name": "Flat Sandals",
"slug": "flat-sandals-1",
"url": "https://www.farfetch.com/shopping/women/gucci/flat-sandals-1/items.aspx"
}
],
"variants": [
{
"sku": "37690086-23",
"size": "36.5",
"price": 766,
"currency": "USD",
"in_stock": true
},
{
"sku": "37690086-25",
"size": "37.5",
"price": 766,
"currency": "USD",
"in_stock": true
}
],
"source_url": "https://www.farfetch.com/shopping/women/gucci-slide-sandals-with-double-g-item-37690086.aspx",
"fetched_at": "2026-09-09T15:35:00Z"
}
}curl "https://api.crawlora.net/api/v1/farfetch/product?gender=<gender>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"