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

# /tsukumo/products/search

> Search TSUKUMO (ツクモ) products by keyword and/or category, narrowed by maker, availability, price range, the category-specific specification filters, merchandising labels, free shipping, dispatch speed and whether discontinued stock is included, with six orderings. Returns product cards with the product number, name, maker, image, tax-included price, availability, stock and dispatch lines, labels, star rating and review count.

**Price:** 1 credit

**⚠️ Common errors:** 412: The requested category holds no products on shop.tsukumo.co.jp, 422: Neither keyword nor category was given, a malformed category, or stock combined with include_discontinued



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/tsukumo/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/tsukumo/products/search:
    post:
      tags:
        - /tsukumo
      summary: /tsukumo/products/search
      description: >-
        Search TSUKUMO (ツクモ) products by keyword and/or category, narrowed by
        maker, availability, price range, the category-specific specification
        filters, merchandising labels, free shipping, dispatch speed and whether
        discontinued stock is included, with six orderings. Returns product
        cards with the product number, name, maker, image, tax-included price,
        availability, stock and dispatch lines, labels, star rating and review
        count.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: The requested category holds no products on
        shop.tsukumo.co.jp, 422: Neither keyword nor category was given, a
        malformed category, or stock combined with include_discontinued
      operationId: __api_tsukumo_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/TsukumoProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TsukumoProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TsukumoProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        maker:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        stock:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        specs:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        tags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        free_shipping:
          type: boolean
          default: false
        ships_within_24h:
          type: boolean
          default: false
        ships_within_3_days:
          type: boolean
          default: false
        newly_stocked:
          type: boolean
          default: false
        include_discontinued:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/TsukumoSort'
          default: recommended
      type: object
      required:
        - count
    TsukumoProductCard:
      properties:
        '@type':
          type: string
          default: TsukumoProductCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        maker_id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TsukumoSort:
      type: string
      enum:
        - recommended
        - newest
        - maker_asc
        - maker_desc
        - price_asc
        - price_desc
    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

````