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

# Extract Amazon Product Reviews

> Extract Amazon product reviews from specific pages.

This action is ideal for extracting customer reviews for any product available on Amazon. It allows you to gather insights and feedback from users who have purchased and reviewed the product.

### Inputs

<ParamField path="amazon_product_url" type="string" required={true} placeholder="Amazon Product URL">
  Input should contain a valid Amazon product URL:
  `https://www.amazon.com/PRODUCT_PERMALINK/product-reviews/PRODUCT_ID/`.
</ParamField>

### Parameters

<ParamField path="max_results" type="number" default={1000}>
  Maximum number of reviews to extract. Can go up to 20,000.
</ParamField>

### Output Fields

The extracted data will include the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="amazon_profile_url" type="string">
      The URL of the reviewer's Amazon profile
    </ResponseField>

    <ResponseField name="content" type="string">
      The content of the review
    </ResponseField>

    <ResponseField name="profile_avatar" type="string">
      The URL of the reviewer's profile avatar
    </ResponseField>

    <ResponseField name="review_author" type="string">
      The name of the review author
    </ResponseField>

    <ResponseField name="review_date" type="string">
      The date the review was posted
    </ResponseField>

    <ResponseField name="review_title" type="string">
      The title of the review
    </ResponseField>

    <ResponseField name="verified_purchase" type="boolean">
      Indicates if the purchase was verified
    </ResponseField>

    <ResponseField name="votes" type="integer">
      The number of helpful votes the review received
    </ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
    "amazon_profile_url": "string",
    "content": "string",
    "profile_avatar": "string",
    "review_author": "string",
    "review_date": "string",
    "review_title": "string",
    "verified_purchase": "boolean",
    "votes": "integer"
  }
  ```
</Accordion>

<Info>
  Ensure that the Amazon product URL is correctly formatted to successfully
  extract the reviews.
</Info>
