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

> Search the MonotaRO (モノタロウ) catalog by keyword, category, brand, part number, price range, rating, shipping lead time and category-specific attribute filters. Returns product cards with prices with and without tax, rating, review count, variant count, shipping lead time, category breadcrumbs, the representative specification set and linked documents.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/monotaro/products/search
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/search:
    post:
      tags:
        - /monotaro
      summary: /monotaro/products/search
      description: >-
        Search the MonotaRO (モノタロウ) catalog by keyword, category, brand, part
        number, price range, rating, shipping lead time and category-specific
        attribute filters. Returns product cards with prices with and without
        tax, rating, review count, variant count, shipping lead time, category
        breadcrumbs, the representative specification set and linked documents.


        **Price:** 1 credit
      operationId: __api_monotaro_products_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MonotaroProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MonotaroSearchItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MonotaroProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        category:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        product_name:
          anyOf:
            - type: string
            - type: 'null'
        order_code:
          anyOf:
            - type: string
            - type: 'null'
        maker_product_code:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_rating:
          anyOf:
            - type: integer
              maximum: 4
              minimum: 1
            - type: 'null'
        max_ship_days:
          anyOf:
            - $ref: '#/components/schemas/MonotaroShipSpeed'
            - type: 'null'
        include_discontinued:
          type: boolean
          default: false
        exclude_business_only:
          type: boolean
          default: false
        subscription_only:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/MonotaroSort'
          default: recommended
      type: object
      required:
        - count
    MonotaroSearchItem:
      properties:
        '@type':
          type: string
          default: MonotaroSearchItem
        id:
          type: string
        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'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        usage:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        has_price_range:
          anyOf:
            - type: boolean
            - type: 'null'
        is_special_price:
          anyOf:
            - type: boolean
            - 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'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        variant_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_orderable:
          anyOf:
            - type: boolean
            - type: 'null'
        can_subscribe:
          anyOf:
            - type: boolean
            - type: 'null'
        has_eco_mark:
          anyOf:
            - type: boolean
            - type: 'null'
        has_rohs_mark:
          anyOf:
            - type: boolean
            - 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
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MonotaroShipSpeed:
      type: string
      enum:
        - same_day
        - next_day
        - two_days
        - three_days
        - four_days
    MonotaroSort:
      type: string
      enum:
        - recommended
        - price_asc
        - price_desc
        - rating_desc
        - review_count_desc
    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

````