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

# /yahoo_shopping/products

> Get full Yahoo! Shopping (Japan) product details by store_alias/item_code (or product URL): title, catch copy, description, brand, price, premium price, list price, PayPay points, free-shipping, sale flag, condition, images, video, rating, review count, recent order count, category breadcrumbs, specifications, store info, SKU variants and cross-store offers summary.

**Price:** 10 credits

**⚠️ Common errors:** 412: Product not found (well-formed store_alias/item_code but the product does not exist)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yahoo_shopping/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/yahoo_shopping/products:
    post:
      tags:
        - /yahoo_shopping
      summary: /yahoo_shopping/products
      description: >-
        Get full Yahoo! Shopping (Japan) product details by
        store_alias/item_code (or product URL): title, catch copy, description,
        brand, price, premium price, list price, PayPay points, free-shipping,
        sale flag, condition, images, video, rating, review count, recent order
        count, category breadcrumbs, specifications, store info, SKU variants
        and cross-store offers summary.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Product not found (well-formed
        store_alias/item_code but the product does not exist)
      operationId: __api_yahoo_shopping_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YahooShoppingProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooShoppingProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooShoppingProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    YahooShoppingProduct:
      properties:
        '@type':
          type: string
          default: YahooShoppingProduct
        id:
          type: string
        item_code:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        catch_copy:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        jan_code:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        has_video:
          type: boolean
          default: false
        video_thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        premium_price:
          anyOf:
            - type: integer
            - type: 'null'
        list_price:
          anyOf:
            - type: integer
            - type: 'null'
        tax_excluded_price:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          type: string
          default: JPY
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        is_free_shipping:
          type: boolean
          default: false
        is_on_sale:
          type: boolean
          default: false
        is_used:
          type: boolean
          default: false
        used_condition:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          type: boolean
          default: false
        order_count_7day:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_breadcrumbs:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/YahooShoppingProductSpec'
          type: array
          default: []
        store:
          anyOf:
            - $ref: '#/components/schemas/YahooShoppingProductStore'
            - type: 'null'
        variant_axes:
          items:
            $ref: '#/components/schemas/YahooShoppingProductVariantAxis'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/YahooShoppingProductSku'
          type: array
          default: []
        offers_summary:
          anyOf:
            - $ref: '#/components/schemas/YahooShoppingProductOffersSummary'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooShoppingProductSpec:
      properties:
        '@type':
          type: string
          default: YahooShoppingProductSpec
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
      type: object
    YahooShoppingProductStore:
      properties:
        '@type':
          type: string
          default: YahooShoppingProductStore
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        cancel_ratio:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    YahooShoppingProductVariantAxis:
      properties:
        '@type':
          type: string
          default: YahooShoppingProductVariantAxis
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
      type: object
    YahooShoppingProductSku:
      properties:
        '@type':
          type: string
          default: YahooShoppingProductSku
        id:
          anyOf:
            - type: string
            - type: 'null'
        options:
          additionalProperties:
            type: string
          type: object
          default: {}
        price:
          anyOf:
            - type: integer
            - type: 'null'
        is_available:
          type: boolean
          default: false
        stock_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    YahooShoppingProductOffersSummary:
      properties:
        '@type':
          type: string
          default: YahooShoppingProductOffersSummary
        item_count:
          anyOf:
            - type: integer
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
            - type: 'null'
        new_min_price:
          anyOf:
            - type: integer
            - type: 'null'
        used_min_price:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    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

````