> ## 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 Product Search

> Searches Amazon products by keyword and returns product listings across paginated results.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-amazon-product-search
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-product-search:
    post:
      tags:
        - Data Sources
      summary: Run Amazon Product Search
      description: >-
        Searches Amazon products by keyword and returns product listings across
        paginated results.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - query
              properties:
                query:
                  type: string
                max_items:
                  type: number
                start_page:
                  type: number
                domain:
                  type: string
            example:
              query: wireless mouse
              max_items: 2
              start_page: 1
              domain: amazon.com
      responses:
        '200':
          description: Search completed.
          content:
            application/json:
              example:
                session_id: cccccccc-cccc-cccc-cccc-cccccccccccc
                kind: amazon_product_search
                query: wireless mouse
                domain: amazon.com
                max_items: 2
                start_page: 1
                human: |-
                  # Amazon product search

                  - **Search term:** wireless mouse
                  - **Domain:** amazon.com
                  - **Starting page:** 1
                  - **Max items:** 2
                  - **Records returned:** 2
                  - **Page weight:** 3.24 MB
                machine:
                  total_items: 2
                  first_item:
                    id: B004YAVF8I
                    title: >-
                      Logitech M185 Compact Ambidextrous 2.4 GHz Wireless Mouse
                      - Swift Grey
                    url: https://www.amazon.com/dp/B004YAVF8I
                    price: $13.97
                    rating: 4.4
                    review_count: 44844
                    image: >-
                      https://m.media-amazon.com/images/I/51WN5aXZWIL._AC_UY218_.jpg
                  items:
                    - id: B004YAVF8I
                      title: >-
                        Logitech M185 Compact Ambidextrous 2.4 GHz Wireless
                        Mouse - Swift Grey
                      url: https://www.amazon.com/dp/B004YAVF8I
                      price: $13.97
                      rating: 4.4
                      review_count: 44844
                      image: >-
                        https://m.media-amazon.com/images/I/51WN5aXZWIL._AC_UY218_.jpg
                    - id: B07CMS5Q6P
                      title: Logitech G305 Lightspeed Wireless Gaming Mouse - Black
                      url: https://www.amazon.com/dp/B07CMS5Q6P
                      price: $29.99
                      rating: 4.6
                      review_count: 39848
                      image: >-
                        https://m.media-amazon.com/images/I/51sg9BLSMTL._AC_UY218_.jpg
                  page_weight_bytes: 3397039
                total_points: 10
        '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

````