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

> List the part numbers (型番) of a MISUMI (ミスミ) series: part number, unit price in JPY excluding tax, pieces per package, minimum order quantity, shipping lead time, stock flag, RoHS status, CAD availability, the full specification values that distinguish the item, and attached documents. Can be narrowed to a configuration and ordered by price or lead time.

**Price:** 1 credit

**⚠️ Common errors:** 412: Series not found (well-formed series code or part number, but no such product on MISUMI)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/misumi/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/misumi/products/variants:
    post:
      tags:
        - /misumi
      summary: /misumi/products/variants
      description: >-
        List the part numbers (型番) of a MISUMI (ミスミ) series: part number, unit
        price in JPY excluding tax, pieces per package, minimum order quantity,
        shipping lead time, stock flag, RoHS status, CAD availability, the full
        specification values that distinguish the item, and attached documents.
        Can be narrowed to a configuration and ordered by price or lead time.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Series not found (well-formed series code or
        part number, but no such product on MISUMI)
      operationId: __api_misumi_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/MisumiVariantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MisumiVariant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MisumiVariantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        attributes:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
        sort:
          $ref: '#/components/schemas/MisumiVariantSort'
          default: catalog
      type: object
      required:
        - product
        - count
    MisumiVariant:
      properties:
        '@type':
          type: string
          default: MisumiVariant
        id:
          type: string
        url:
          type: string
        series_id:
          type: string
        part_number:
          type: string
        inner_code:
          anyOf:
            - type: string
            - type: 'null'
        inner_name:
          anyOf:
            - type: string
            - type: 'null'
        inner_name_en:
          anyOf:
            - type: string
            - type: 'null'
        type_code:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        pieces_per_package:
          anyOf:
            - type: integer
            - type: 'null'
        min_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        order_unit:
          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'
        is_stock_item:
          anyOf:
            - type: boolean
            - type: 'null'
        is_discontinued:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sales_stopped:
          anyOf:
            - type: boolean
            - type: 'null'
        sales_stop_message:
          anyOf:
            - type: string
            - type: 'null'
        is_special_shipment:
          anyOf:
            - type: boolean
            - type: 'null'
        is_prompt_delivery:
          anyOf:
            - type: boolean
            - type: 'null'
        has_volume_discount:
          anyOf:
            - type: boolean
            - type: 'null'
        part_number_pattern:
          anyOf:
            - type: string
            - type: 'null'
        cad_types:
          items:
            type: string
          type: array
          default: []
        labels:
          items:
            type: string
          type: array
          default: []
        notes:
          items:
            type: string
          type: array
          default: []
        cautions:
          items:
            type: string
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/MisumiSpec'
          type: array
          default: []
        documents:
          items:
            $ref: '#/components/schemas/MisumiDocument'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - series_id
        - part_number
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MisumiVariantSort:
      type: string
      enum:
        - catalog
        - days_to_ship_asc
        - days_to_ship_desc
        - price_asc
        - price_desc
    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
    MisumiDocument:
      properties:
        '@type':
          type: string
          default: MisumiDocument
        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

````