# 📝 Descriptions and spec sheets for a product list

**Use case:** 

For each product URL you paste, returns the plain-text description, the full specification table, the rich-text HTML and the "important information" images, alongside the product's title and brand. Built for product feeds, comparison sites and catalogue enrichment. Reviews and Q&A are off.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.joybuy.fr/dp/p/10409186"
    },
    {
      "url": "https://www.joybuy.fr/dp/p/10408679"
    },
    {
      "url": "https://www.joybuy.fr/dp/p/10412556"
    }
  ],
  "keywords": [
    "iphone 17"
  ],
  "maxItemsPerInput": 50,
  "sortType": "sort_default",
  "scrapeDescription": true,
  "minRating": "0",
  "inStockOnly": false,
  "bestsellersOnly": false,
  "lightningOffersOnly": false,
  "fastDeliveryOnly": false,
  "scrapeReviews": false,
  "maxReviews": 10,
  "scrapeQuestions": false,
  "maxQuestions": 5,
  "includePersonalData": true,
  "country": "FR",
  "language": "en_GB"
}
```

## Output

```json
{
  "skuId": {
    "label": "SKU",
    "format": "string"
  },
  "title": {
    "label": "Product",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "specifications": {
    "label": "Specifications",
    "format": "object"
  },
  "importantInfoImages": {
    "label": "Info images",
    "format": "array"
  },
  "descriptionHtml": {
    "label": "Description (HTML)",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Joybuy scraper 🛍️](https://apify.com/borderline/joybuy-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/borderline/joybuy-api.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/borderline/joybuy-api.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
