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

# Run Amazon Seller Products

> Lists products sold by an Amazon seller's storefront: title, URL, price, rating, and image.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-amazon-seller-products
openapi: 3.0.0
info:
  title: NeuralVerge API
  version: 1.0.0
  description: >-
    NeuralVerge API for AI research workflows, search, extraction, and
    structured data source execution.
servers:
  - url: https://api.neuralverge.ai
    description: NeuralVerge API
security:
  - BearerAuth: []
tags:
  - name: AI Research
    description: Research workflows and session tracking.
  - name: AI Extract
    description: Schema-driven extraction workflows.
  - name: AI Agents
    description: Reusable saved agents executed through the API.
  - name: Search
    description: Fast, synchronous web search with no session or polling.
  - name: Data Sources
    description: >-
      Focused provider lookups for LinkedIn, email, phone, company, and Amazon
      data.
paths:
  /functions/v1/run-amazon-seller-products:
    post:
      tags:
        - Data Sources
      summary: Run Amazon Seller Products
      description: >-
        Lists products sold by an Amazon seller's storefront: title, URL, price,
        rating, and image.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - seller
              properties:
                seller:
                  type: string
                count:
                  type: number
                domain:
                  type: string
            example:
              seller: A2L77EE7U53NWQ
              count: 2
              domain: amazon.com
      responses:
        '200':
          description: Search completed.
          content:
            application/json:
              example:
                session_id: 01010101-0101-0101-0101-010101010101
                kind: amazon_seller_products
                seller: A2L77EE7U53NWQ
                domain: amazon.com
                count: 2
                human: |-
                  # Amazon seller products

                  - **Seller ID:** A2L77EE7U53NWQ
                  - **Domain:** amazon.com
                  - **Requested count:** 2
                  - **Records returned:** 2
                  - **Page weight:** 2.74 MB
                machine:
                  total_items: 2
                  items:
                    - id: B004YAVF8I
                      url: https://www.amazon.com/dp/B004YAVF8I
                      price: 13.97
                      currency: $
                      list_price: 17.99
                      rating: 4.4
                      review_count: 44844
                      image: >-
                        https://m.media-amazon.com/images/I/51WN5aXZWIL._AC_UY218_.jpg
                      is_sponsored: false
                      is_prime: true
                    - id: B07CMS5Q6P
                      url: https://www.amazon.com/dp/B07CMS5Q6P
                      price: 29.99
                      currency: $
                      list_price: null
                      rating: 4.6
                      review_count: 39848
                      image: >-
                        https://m.media-amazon.com/images/I/51sg9BLSMTL._AC_UY218_.jpg
                      is_sponsored: false
                      is_prime: true
                  page_weight_bytes: 2872110
                total_points: 5
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '402':
          description: Payment Required
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````