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

# /lohaco/products

> Get a LOHACO (ロハコ) product by item code or product URL: title, price, unit price, stock, brand, JAN code, maker, full specification table, average rating and review count, category breadcrumbs, promotion tags, images, sibling variants, delivery lead time and PayPay point rate.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed item code but no such product on LOHACO)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/lohaco/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/lohaco/products:
    post:
      tags:
        - /lohaco
      summary: /lohaco/products
      description: >-
        Get a LOHACO (ロハコ) product by item code or product URL: title, price,
        unit price, stock, brand, JAN code, maker, full specification table,
        average rating and review count, category breadcrumbs, promotion tags,
        images, sibling variants, delivery lead time and PayPay point rate.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed item code but
        no such product on LOHACO)
      operationId: __api_lohaco_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LohacoProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LohacoProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LohacoProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    LohacoProduct:
      properties:
        '@type':
          type: string
          default: LohacoProduct
        id:
          type: string
        url:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        unit_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_rate:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        is_best_price:
          anyOf:
            - type: boolean
            - type: 'null'
        is_subscription_available:
          anyOf:
            - type: boolean
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        jan_code:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        care_comment:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        product_category_id:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/LohacoBreadcrumb'
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        variants:
          items:
            $ref: '#/components/schemas/LohacoVariant'
          type: array
          default: []
        variant_axis:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        store_name:
          anyOf:
            - type: string
            - type: 'null'
        delivery_lead_time:
          anyOf:
            - type: string
            - type: 'null'
        free_shipping_threshold:
          anyOf:
            - type: number
            - type: 'null'
        base_postage:
          anyOf:
            - type: number
            - type: 'null'
        point_percent:
          anyOf:
            - type: number
            - type: 'null'
        category_rank:
          anyOf:
            - type: integer
            - type: 'null'
        category_rank_name:
          anyOf:
            - type: string
            - type: 'null'
        order_limit:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    LohacoBreadcrumb:
      properties:
        '@type':
          type: string
          default: LohacoBreadcrumb
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    LohacoVariant:
      properties:
        '@type':
          type: string
          default: LohacoVariant
        id:
          type: string
        url:
          type: string
        store_id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        options:
          additionalProperties:
            type: string
          type: object
          default: {}
      type: object
      required:
        - id
        - url
        - store_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

````