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

> Fetches an Amazon seller profile by seller ID: name, rating, business details, and contact info.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-amazon-seller
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:
    post:
      tags:
        - Data Sources
      summary: Run Amazon Seller
      description: >-
        Fetches an Amazon seller profile by seller ID: name, rating, business
        details, and contact info.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - seller
              properties:
                seller:
                  type: string
                domain:
                  type: string
            example:
              seller: A2L77EE7U53NWQ
              domain: amazon.com
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              example:
                session_id: ffffffff-ffff-ffff-ffff-ffffffffffff
                kind: amazon_seller
                seller: A2L77EE7U53NWQ
                domain: amazon.com
                human: |-
                  # Amazon seller

                  - **Seller ID:** A2L77EE7U53NWQ
                  - **Domain:** amazon.com
                  - **Page weight:** 1.10 MB
                  - **Name:** Example Seller Co
                  - **Rating:** 96% (2130 ratings)
                  - **Business name:** Example Seller Co LLC
                  - **Business address:** 123 Main St, Seattle, WA
                  - **Phone:** +1 555-0100
                machine:
                  seller:
                    id: A2L77EE7U53NWQ
                    name: Example Seller Co
                    rating: 96
                    rating_count: 2130
                    positive_percent: 96
                    about: Authorized reseller of electronics and accessories.
                    business_name: Example Seller Co LLC
                    business_address: 123 Main St, Seattle, WA
                    phone: +1 555-0100
                    privacy_policy: >-
                      https://www.amazon.com/gp/help/customer/display.html?nodeId=468496
                    rating_30d:
                      rating: 97
                      rating_count: 84
                    rating_90d:
                      rating: 96
                      rating_count: 310
                    rating_365d:
                      rating: 96
                      rating_count: 1240
                    rating_lifetime:
                      rating: 96
                      rating_count: 2130
                  page_weight_bytes: 1149203
                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

````