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

# Seller Feedback

> Buyer feedback entries for a seller.

## Path Parameters

<ParamField path="seller_id" type="string" required>
  The Amazon seller ID whose feedback to list.
</ParamField>

## Query Parameters

<ParamField query="domain" type="string" default="com">
  Amazon marketplace TLD or code where the seller operates.

  Examples: `com`, `co.uk`, `de`
</ParamField>

<ParamField query="page" type="integer" default={1}>
  Page number for paginated feedback entries. Starts at `1`.
</ParamField>

## Response

<ResponseField name="seller_id" type="string">The seller ID whose feedback was listed.</ResponseField>
<ResponseField name="domain" type="string">Marketplace domain.</ResponseField>

<ResponseField name="feedback" type="array">
  Array of buyer feedback entries.

  <Expandable title="Feedback object">
    <ResponseField name="rating" type="integer">Star rating left by the buyer (1-5).</ResponseField>
    <ResponseField name="body" type="string">Feedback comment text.</ResponseField>
    <ResponseField name="date_raw" type="string">Raw date string as shown on Amazon.</ResponseField>
    <ResponseField name="date_at" type="string">ISO 8601 timestamp of the feedback (nullable).</ResponseField>
    <ResponseField name="rater" type="string">Buyer display name, if shown (nullable).</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="pagination" type="object">
  Pagination metadata with `current_page`, `total_pages`, `total_results`.
</ResponseField>

### Example Response

```json theme={null}
{
  "seller_id": "A1B2C3D4E5F6G7",
  "domain": "com",
  "feedback": [
    {
      "rating": 5,
      "body": "Fast shipping and item exactly as described. Would buy again.",
      "date_raw": "Reviewed on May 30, 2026",
      "date_at": "2026-05-30T00:00:00Z",
      "rater": "M. K."
    }
  ],
  "pagination": { "current_page": 1, "total_pages": 50, "total_results": 500 }
}
```

<Note>
  Each seller feedback request costs **3 credits**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/amazon/sellers/{seller_id}/feedback
openapi: 3.1.0
info:
  title: ScrapeBadger Amazon API
  version: 1.0.0
  description: >-
    Amazon marketplace scraping API for searching products, fetching product
    details, offers, reviews, listings, sellers, and reference data across 20
    marketplaces.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/amazon/sellers/{seller_id}/feedback:
    get:
      tags:
        - Amazon Sellers
      summary: Seller Feedback
      description: Buyer feedback entries for a seller.
      operationId: getAmazonSellerFeedback
      parameters:
        - name: seller_id
          in: path
          required: true
          schema:
            type: string
          description: The Amazon seller ID whose feedback to list.
        - name: domain
          in: query
          schema:
            type: string
            default: com
          description: Amazon marketplace TLD or code (com, co.uk, de, ...).
        - name: page
          in: query
          schema:
            type: integer
            default: 1
            minimum: 1
          description: Page number for paginated feedback entries.
      responses:
        '200':
          description: Seller feedback entries
          content:
            application/json:
              schema:
                type: object
                properties:
                  seller_id:
                    type: string
                  domain:
                    type: string
                  feedback:
                    type: array
                    items:
                      type: object
                      properties:
                        rating:
                          type: integer
                          description: Star rating left by the buyer (1-5).
                        body:
                          type: string
                          description: Feedback comment text.
                        date_raw:
                          type: string
                          description: Raw date string as shown on Amazon.
                        date_at:
                          type: string
                          nullable: true
                          description: ISO 8601 timestamp of the feedback.
                        rater:
                          type: string
                          nullable: true
                          description: Buyer display name, if shown.
                  pagination:
                    $ref: '#/components/schemas/Pagination'
              example:
                seller_id: A1B2C3D4E5F6G7
                domain: com
                feedback:
                  - rating: 5
                    body: >-
                      Fast shipping and item exactly as described. Would buy
                      again.
                    date_raw: Reviewed on May 30, 2026
                    date_at: '2026-05-30T00:00:00Z'
                    rater: M. K.
                pagination:
                  current_page: 1
                  total_pages: 50
                  total_results: 500
components:
  schemas:
    Pagination:
      type: object
      properties:
        current_page:
          type: integer
          description: Current page number.
        total_pages:
          type: integer
          description: Total number of pages available.
        total_results:
          type: integer
          description: Total number of results across all pages.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````