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

# /walmart/products

> Get full Walmart product details by itemId (or product URL): title, brand, price, list_price, images, rating, reviews breakdown, specifications, features, warranty, badges, condition, return policy, variants, seller and availability.

**Price:** 10 credits

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent itemId, or page has no product)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/walmart/products
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/walmart/products:
    post:
      tags:
        - /walmart
      summary: /walmart/products
      description: >-
        Get full Walmart product details by itemId (or product URL): title,
        brand, price, list_price, images, rating, reviews breakdown,
        specifications, features, warranty, badges, condition, return policy,
        variants, seller and availability.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent itemId, or page has no product)
      operationId: __api_walmart_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WalmartProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WalmartProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WalmartProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    WalmartProduct:
      properties:
        '@type':
          type: string
          default: WalmartProduct
        id:
          type: string
        url:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_url:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        manufacturer_id:
          anyOf:
            - type: string
            - type: 'null'
        upc:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_five_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_four_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_three_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_two_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_one_count:
          anyOf:
            - type: integer
            - type: 'null'
        availability_status:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        long_description:
          anyOf:
            - type: string
            - type: 'null'
        features:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/WalmartProductSpecification'
          type: array
          default: []
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        is_preowned:
          anyOf:
            - type: boolean
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        return_policy:
          anyOf:
            - $ref: '#/components/schemas/WalmartProductReturnPolicy'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/WalmartProductSeller'
            - type: 'null'
        seller_count:
          anyOf:
            - type: integer
            - type: 'null'
        variants:
          items:
            $ref: '#/components/schemas/WalmartProductVariant'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    WalmartProductSpecification:
      properties:
        '@type':
          type: string
          default: WalmartProductSpecification
        name:
          type: string
        value:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    WalmartProductReturnPolicy:
      properties:
        '@type':
          type: string
          default: WalmartProductReturnPolicy
        is_returnable:
          anyOf:
            - type: boolean
            - type: 'null'
        has_free_returns:
          anyOf:
            - type: boolean
            - type: 'null'
        return_window:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    WalmartProductSeller:
      properties:
        '@type':
          type: string
          default: WalmartProductSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        catalog_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    WalmartProductVariant:
      properties:
        '@type':
          type: string
          default: WalmartProductVariant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        dimension:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````