> ## 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 Seller Reviews

> Extract reviews from a specific Amazon seller.

This action allows you to extract all reviews listed on an Amazon seller profile. Simply provide the Amazon seller review URL to begin extracting reviews.

### Inputs

<ParamField path="amazon_seller_review_url" type="string" required={true} placeholder="Amazon Seller Review URL">
  Input should contain a valid Amazon seller review URL.
</ParamField>

### Parameters

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

<ParamField path="max_days" type="number" default={0}>
  Scraps every review of the past X days.
</ParamField>

<ParamField path="max_date" type="string">
  Scraps every review from now on up to the date you enter. Use the format yyyy/mm/dd.
</ParamField>

<ParamField path="excluded_publishers" type="string">
  A list of publishers to exclude, separated by commas.
</ParamField>

### Output Fields

The extracted data will include the following fields:

<ResponseField>
  <Expandable title="properties">
    <ResponseField name="amazon_property_url" type="string">The URL of the Amazon property</ResponseField>
    <ResponseField name="amazon_review_id" type="string">The unique ID of the Amazon review</ResponseField>
    <ResponseField name="author_name" type="string">The name of the review author</ResponseField>
    <ResponseField name="content" type="string">The content of the review</ResponseField>
    <ResponseField name="created_at" type="string">The creation date of the review</ResponseField>
    <ResponseField name="experience_date" type="string">The date of the experience being reviewed</ResponseField>
    <ResponseField name="first_name" type="string">The first name of the review author</ResponseField>
    <ResponseField name="grade" type="string">The grade or rating given in the review</ResponseField>
    <ResponseField name="last_name" type="string">The last name of the review author</ResponseField>
    <ResponseField name="property_name" type="string">The name of the property being reviewed</ResponseField>
    <ResponseField name="review_date" type="string">The date the review was posted</ResponseField>
    <ResponseField name="source" type="string">The source of the review</ResponseField>
  </Expandable>
</ResponseField>

Below is the JSON schema for the output fields:

<Accordion title="Show JSON Output Schema">
  ```json
  {
      "amazon_property_url": "string",
      "amazon_review_id": "string",
      "author_name": "string",
      "content": "string",
      "created_at": "string",
      "experience_date": "string",
      "first_name": "string",
      "grade": "string",
      "last_name": "string",
      "property_name": "string",
      "review_date": "string",
      "source": "string"
  }
  ```
</Accordion>

<Info>Ensure that the Amazon seller review URL is valid to successfully extract reviews.</Info>
