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

# /yodobashi/products

> Get full Yodobashi Camera (ヨドバシカメラ) product details by SKU or product URL: name, brand, maker, images, price with list price and discount, Gold Point reward, stock and delivery status, alternative editions, description, spec table, category breadcrumbs, category rankings, rating and review count.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed SKU but no such product on yodobashi.com)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yodobashi/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/yodobashi/products:
    post:
      tags:
        - /yodobashi
      summary: /yodobashi/products
      description: >-
        Get full Yodobashi Camera (ヨドバシカメラ) product details by SKU or product
        URL: name, brand, maker, images, price with list price and discount,
        Gold Point reward, stock and delivery status, alternative editions,
        description, spec table, category breadcrumbs, category rankings, rating
        and review count.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed SKU but no
        such product on yodobashi.com)
      operationId: __api_yodobashi_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YodobashiProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YodobashiProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YodobashiProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    YodobashiProduct:
      properties:
        '@type':
          type: string
          default: YodobashiProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        maker_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        discount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        availability:
          anyOf:
            - type: string
            - type: 'null'
        is_discontinued:
          type: boolean
          default: false
        condition:
          anyOf:
            - type: string
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        store_stock_count:
          anyOf:
            - type: integer
            - type: 'null'
        variation_skus:
          items:
            type: string
          type: array
          default: []
        formats:
          items:
            $ref: '#/components/schemas/YodobashiProductFormat'
          type: array
          default: []
        rankings:
          items:
            $ref: '#/components/schemas/YodobashiProductRanking'
          type: array
          default: []
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        notes:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YodobashiProductFormat:
      properties:
        '@type':
          type: string
          default: YodobashiProductFormat
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        is_current:
          type: boolean
          default: false
      type: object
      required:
        - name
    YodobashiProductRanking:
      properties:
        '@type':
          type: string
          default: YodobashiProductRanking
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        days_in_top_100:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - 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

````