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

> Fetches full Walmart product details by item ID or URL: brand, price, rating, specifications, and seller (including `seller.storefront_url`). Flat 5 points per successful lookup.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-walmart-product
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, marketplace
      (Amazon, eBay, Walmart, AliExpress, Alibaba), and product review
      (Capterra, Gartner Peer Insights, Trustpilot) data.
paths:
  /functions/v1/run-walmart-product:
    post:
      tags:
        - Data Sources
      summary: Run Walmart Product
      description: >-
        Fetches full Walmart product details by item ID or URL: brand, price,
        rating, specifications, and seller (including `seller.storefront_url`).
        Flat 5 points per successful lookup.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                item:
                  type: string
                  description: Walmart item ID or product URL.
              required:
                - item
            example:
              item: '15545702811'
      responses:
        '200':
          description: Lookup completed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  session_id:
                    type: string
                  kind:
                    type: string
                  human:
                    type: string
                    description: Markdown summary for display.
                  machine:
                    type: object
                    properties:
                      product:
                        type: object
                  total_points:
                    type: integer
        '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

````