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

> Get a MonotaRO (モノタロウ) product by order code (注文コード), product-group code or product URL: name, brand, maker product code, prices with and without tax, list price, shipping lead time, rating, review count, category breadcrumbs, images, the full specification table and linked documents (safety data sheets, RoHS certificates, product Q&A).

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/monotaro/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/monotaro/products:
    post:
      tags:
        - /monotaro
      summary: /monotaro/products
      description: >-
        Get a MonotaRO (モノタロウ) product by order code (注文コード), product-group code
        or product URL: name, brand, maker product code, prices with and without
        tax, list price, shipping lead time, rating, review count, category
        breadcrumbs, images, the full specification table and linked documents
        (safety data sheets, RoHS certificates, product Q&A).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed code but no
        such product on MonotaRO)
      operationId: __api_monotaro_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MonotaroProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MonotaroProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MonotaroProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        code_type:
          $ref: '#/components/schemas/MonotaroCodeType'
          default: order_code
      type: object
      required:
        - product
    MonotaroProduct:
      properties:
        '@type':
          type: string
          default: MonotaroProduct
        id:
          type: string
        url:
          type: string
        order_code:
          anyOf:
            - type: string
            - type: 'null'
        product_code:
          type: string
        product_url:
          type: string
        name:
          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: []
        attention:
          anyOf:
            - type: string
            - type: 'null'
        usage:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        list_price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        quantity:
          anyOf:
            - type: string
            - type: 'null'
        min_ship_days:
          anyOf:
            - type: integer
            - type: 'null'
        max_ship_days:
          anyOf:
            - type: integer
            - type: 'null'
        is_orderable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_private_brand:
          anyOf:
            - type: boolean
            - type: 'null'
        can_subscribe:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sellable_to_consumer:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        variant_count:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/MonotaroCategoryRef'
          type: array
          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
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MonotaroCodeType:
      type: string
      enum:
        - order_code
        - product_code
    MonotaroCategoryRef:
      properties:
        '@type':
          type: string
          default: MonotaroCategoryRef
        id:
          type: string
        name:
          type: string
        url:
          type: string
      type: object
      required:
        - id
        - name
        - url
    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

````