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

# /misumi/products/search

> Search the MISUMI (ミスミ) catalog by keyword, category, manufacturer, category-specific specification filters, shipping lead time, stock, CAD availability and RoHS compliance. Returns series cards with the price range in JPY excluding tax, shipping lead time, rating, category breadcrumbs, images and the comparison specifications the category ranks products by.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/misumi/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/misumi/products/search:
    post:
      tags:
        - /misumi
      summary: /misumi/products/search
      description: >-
        Search the MISUMI (ミスミ) catalog by keyword, category, manufacturer,
        category-specific specification filters, shipping lead time, stock, CAD
        availability and RoHS compliance. Returns series cards with the price
        range in JPY excluding tax, shipping lead time, rating, category
        breadcrumbs, images and the comparison specifications the category ranks
        products by.


        **Price:** 1 credit
      operationId: __api_misumi_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/MisumiProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MisumiSearchItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MisumiProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        count:
          type: integer
          minimum: 1
        category:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        attributes:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
        max_days_to_ship:
          anyOf:
            - type: integer
              maximum: 99
              minimum: 0
            - type: 'null'
        in_stock_only:
          type: boolean
          default: false
        with_cad_only:
          type: boolean
          default: false
        rohs_only:
          type: boolean
          default: false
        economy_only:
          type: boolean
          default: false
        include_discontinued:
          type: boolean
          default: false
        exact_match:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/MisumiSort'
          default: recommended
      type: object
      required:
        - count
    MisumiSearchItem:
      properties:
        '@type':
          type: string
          default: MisumiSearchItem
        id:
          type: string
        url:
          type: string
        name:
          type: string
        brand:
          anyOf:
            - $ref: '#/components/schemas/MisumiBrandRef'
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        department_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            $ref: '#/components/schemas/MisumiCategoryRef'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/MisumiImage'
          type: array
          default: []
        shape_image:
          anyOf:
            - type: string
            - type: 'null'
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        min_price_per_piece:
          anyOf:
            - type: number
            - type: 'null'
        max_price_per_piece:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        min_pieces_per_package:
          anyOf:
            - type: integer
            - type: 'null'
        max_pieces_per_package:
          anyOf:
            - type: integer
            - type: 'null'
        min_days_to_ship:
          anyOf:
            - type: integer
            - type: 'null'
        max_days_to_ship:
          anyOf:
            - type: integer
            - type: 'null'
        min_shortest_days_to_ship:
          anyOf:
            - type: integer
            - type: 'null'
        max_shortest_days_to_ship:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_stock_item:
          anyOf:
            - type: boolean
            - type: 'null'
        is_discontinued:
          anyOf:
            - type: boolean
            - type: 'null'
        is_package_spec:
          anyOf:
            - type: boolean
            - type: 'null'
        is_special_shipment:
          anyOf:
            - type: boolean
            - type: 'null'
        has_volume_discount:
          anyOf:
            - type: boolean
            - type: 'null'
        is_economy:
          anyOf:
            - type: boolean
            - type: 'null'
        grade:
          anyOf:
            - type: string
            - type: 'null'
        cad_types:
          items:
            type: string
          type: array
          default: []
        labels:
          items:
            type: string
          type: array
          default: []
        pictograms:
          items:
            $ref: '#/components/schemas/MisumiPictogram'
          type: array
          default: []
        rohs:
          anyOf:
            - $ref: '#/components/schemas/MisumiCompliance'
            - type: 'null'
        chemsherpa:
          anyOf:
            - $ref: '#/components/schemas/MisumiCompliance'
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        is_recommended:
          anyOf:
            - type: boolean
            - type: 'null'
        comparison_specs:
          items:
            $ref: '#/components/schemas/MisumiSpec'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MisumiSort:
      type: string
      enum:
        - recommended
        - price_asc
        - popular
        - days_to_ship_asc
    MisumiBrandRef:
      properties:
        '@type':
          type: string
          default: MisumiBrandRef
        id:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        is_misumi:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
        - name
    MisumiCategoryRef:
      properties:
        '@type':
          type: string
          default: MisumiCategoryRef
        id:
          type: string
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    MisumiImage:
      properties:
        '@type':
          type: string
          default: MisumiImage
        url:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - url
    MisumiPictogram:
      properties:
        '@type':
          type: string
          default: MisumiPictogram
        name:
          type: string
      type: object
      required:
        - name
    MisumiCompliance:
      properties:
        '@type':
          type: string
          default: MisumiCompliance
        standard:
          type: string
        status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - standard
    MisumiSpec:
      properties:
        '@type':
          type: string
          default: MisumiSpec
        id:
          type: string
        name:
          type: string
        value:
          type: string
        filter_value:
          anyOf:
            - type: string
            - type: 'null'
        group:
          anyOf:
            - type: string
            - type: 'null'
        group_value:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        diagram:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
        - value
    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

````