> ## 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 Offers

> Fetches all marketplace offers for an Amazon product by ASIN: price, condition, seller, and delivery.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-amazon-product-offers
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-offers:
    post:
      tags:
        - Data Sources
      summary: Run Amazon Product Offers
      description: >-
        Fetches all marketplace offers for an Amazon product by ASIN: price,
        condition, seller, and delivery.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - asin
              properties:
                asin:
                  type: string
                domain:
                  type: string
            example:
              asin: B004YAVF8I
              domain: amazon.com
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              example:
                session_id: eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee
                kind: amazon_product_offers
                asin: B004YAVF8I
                domain: amazon.com
                human: |-
                  # Amazon product offers

                  - **ASIN:** B004YAVF8I
                  - **Domain:** amazon.com
                  - **Offers returned:** 2
                  - **Page weight:** 3.31 MB
                machine:
                  total_items: 2
                  offers:
                    - asin: B004YAVF8I
                      price: 13.97
                      currency: $
                      savings_percent: 22
                      condition: New
                      condition_note: null
                      ships_from: Amazon.com
                      sold_by: Amazon.com
                      is_prime: true
                      delivery: FREE delivery Thursday, September 10
                      seller:
                        id: null
                        name: Amazon.com
                        rating: null
                        rating_count: null
                        positive_percent: null
                    - asin: B004YAVF8I
                      price: 8.94
                      currency: $
                      savings_percent: null
                      condition: Used - Acceptable
                      condition_note: null
                      ships_from: Amazon.com
                      sold_by: Amazon Resale
                      is_prime: false
                      delivery: FREE delivery Thursday, September 10
                      seller:
                        id: null
                        name: Amazon Resale
                        rating: null
                        rating_count: null
                        positive_percent: null
                  page_weight_bytes: 3466210
                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

````