# ❓ Customer questions and answers for a product

**Use case:** 

Collects the customer Q&A shown on Joybuy product pages, one row per question with its answer, date and answer count, for every product URL you paste. Useful for FAQ content, buyer objections and product-page copy. Raise Max questions per product to go deeper.

## Input

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

## Output

```json
{
  "skuId": {
    "label": "SKU"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Product"
  },
  "question": {
    "label": "Question"
  },
  "answer": {
    "label": "Answer"
  },
  "askerNick": {
    "label": "Asked by"
  },
  "date": {
    "label": "Date"
  },
  "answerCount": {
    "label": "Answers"
  }
}
```

## 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`).
