> ## Documentation Index
> Fetch the complete documentation index at: https://docs.retailed.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Farfetch Product

> Get product information from Farfetch

### Header

<ParamField header="x-api-key" type="string" required={true}>
  Parameter defines the Retailed private key to use.
</ParamField>

### Parameters

<ParamField query="query" type="string" optional={false} placeholder="https://www.farfetch.com/eg/shopping/men/versace-odissea-slip-on-sneakers-item-22100594.aspx">
  Product URL (`simple` or `extended` mode) or product Id (only for `extended` mode)
</ParamField>

<ParamField query="mode" type="string" optional={true} placeholder="simple">
  The mode field allows you to choose between two extraction modes for the product information:

  `simple` mode : This mode quickly extracts the main information from the product page. It includes basic details such as the product name, price, and description.

  `extended` mode : Using this argument, all available information about the product and its variants will be extracted. This includes not only the basic details but also additional information such as available sizes and colors, materials, customer reviews, and other specific details related to the product variants.
</ParamField>

<ParamField query="country" type="string" optional={true} placeholder="UK">
  Country code : `UK`, `FR`, etc.
</ParamField>

<ParamField query="language" type="string" optional={true} placeholder="en-GB">
  Language code : `en-GB`, `fr-FR`, etc.
</ParamField>

<ResponseExample>
  ```json Example Response theme={null}
  {
      "id": "22100594",
      "name": "Odissea slip-on sneakers",
      "brand": "Versace",
      "price": 1277,
      "gender": "men",
      "images": [
          "https://cdn-images.farfetch-contents.com/22/10/05/94/22100594_52388921_1000.jpg",
          "https://cdn-images.farfetch-contents.com/22/10/05/94/22100594_52379185_1000.jpg",
          "https://cdn-images.farfetch-contents.com/22/10/05/94/22100594_52379154_1000.jpg",
          "https://cdn-images.farfetch-contents.com/22/10/05/94/22100594_52379161_1000.jpg"
      ],
      "description": "Versace merges a futuristic aesthetic with its house hallmarks in the design of these slip-on Odissea sneakers. Rendered in black, they’re defined by sharp contoured lines and a three-dimensional Medusa plaque at the front.",
      "price_currency": "USD"
  }
  ```
</ResponseExample>
