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

# /monotaro/products/variants

> List every SKU (size / shape / packaging variant) of a MonotaRO (モノタロウ) product family: order code, sub-name, brand, category, price with and without tax, list price, packaging unit, shipping lead time, the variant-defining attributes, the full specification table and linked documents (safety data sheets, RoHS certificates).

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/monotaro/products/variants
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/monotaro/products/variants:
    post:
      tags:
        - /monotaro
      summary: /monotaro/products/variants
      description: >-
        List every SKU (size / shape / packaging variant) of a MonotaRO (モノタロウ)
        product family: order code, sub-name, brand, category, price with and
        without tax, list price, packaging unit, shipping lead time, the
        variant-defining attributes, the full specification table and linked
        documents (safety data sheets, RoHS certificates).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product family not found (well-formed code
        but no such product on MonotaRO)
      operationId: __api_monotaro_products_variants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MonotaroProductsVariantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MonotaroVariant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MonotaroProductsVariantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        code_type:
          $ref: '#/components/schemas/MonotaroCodeType'
          default: order_code
      type: object
      required:
        - product
        - count
    MonotaroVariant:
      properties:
        '@type':
          type: string
          default: MonotaroVariant
        id:
          type: string
        url:
          type: string
        product_code:
          type: string
        product_url:
          type: string
        sub_name:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        maker_product_code:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        list_price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        quantity:
          anyOf:
            - type: string
            - type: 'null'
        ship_days:
          anyOf:
            - type: integer
            - type: 'null'
        is_orderable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_private_brand:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sellable_to_consumer:
          anyOf:
            - type: boolean
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        documents:
          items:
            $ref: '#/components/schemas/MonotaroDocument'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - product_code
        - product_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MonotaroCodeType:
      type: string
      enum:
        - order_code
        - product_code
    MonotaroDocument:
      properties:
        '@type':
          type: string
          default: MonotaroDocument
        name:
          type: string
        url:
          type: string
      type: object
      required:
        - name
        - url
    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

````