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

# /joshin/products/search

> Search Joshin (上新電機) products by keyword and narrow the result by genre, manufacturer, model code, price range, release date range, colour, sale state and the Japanese OTC medicine attributes. Returns product cards with JAN code, URL, name, manufacturer, model code, image, tax-included price, Joshin point reward, stock and shipping state, release date and short description.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/joshin/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/joshin/products/search:
    post:
      tags:
        - /joshin
      summary: /joshin/products/search
      description: >-
        Search Joshin (上新電機) products by keyword and narrow the result by genre,
        manufacturer, model code, price range, release date range, colour, sale
        state and the Japanese OTC medicine attributes. Returns product cards
        with JAN code, URL, name, manufacturer, model code, image, tax-included
        price, Joshin point reward, stock and shipping state, release date and
        short description.


        **Price:** 1 credit
      operationId: __api_joshin_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/JoshinProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JoshinProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JoshinProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        genre:
          anyOf:
            - $ref: '#/components/schemas/JoshinGenre'
            - type: 'null'
        maker:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        model_code:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        release_date_from:
          anyOf:
            - type: string
              pattern: ^\d{4}-\d{2}-\d{2}$
            - type: 'null'
        release_date_to:
          anyOf:
            - type: string
              pattern: ^\d{4}-\d{2}-\d{2}$
            - type: 'null'
        color:
          anyOf:
            - $ref: '#/components/schemas/JoshinColor'
            - type: 'null'
        in_stock:
          type: boolean
          default: false
        on_sale:
          type: boolean
          default: false
        is_new:
          type: boolean
          default: false
        is_reserve:
          type: boolean
          default: false
        is_limited:
          type: boolean
          default: false
        has_coupon:
          type: boolean
          default: false
        has_guarantee:
          type: boolean
          default: false
        ships_24h:
          type: boolean
          default: false
        medicine_audience:
          anyOf:
            - $ref: '#/components/schemas/JoshinMedicineAudience'
            - type: 'null'
        medicine_class:
          anyOf:
            - $ref: '#/components/schemas/JoshinMedicineClass'
            - type: 'null'
        dosage_form:
          anyOf:
            - $ref: '#/components/schemas/JoshinDosageForm'
            - type: 'null'
        is_quasi_drug:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/JoshinProductSort'
          default: relevance
      type: object
      required:
        - keyword
        - count
    JoshinProductCard:
      properties:
        '@type':
          type: string
          default: JoshinProductCard
        id:
          type: string
        url:
          type: string
        genre:
          type: string
        category_id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        model_code:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          anyOf:
            - type: boolean
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        review_group:
          anyOf:
            - type: string
            - type: 'null'
        is_sponsored:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
        - genre
        - category_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JoshinGenre:
      type: string
      enum:
        - kaden
        - season
        - house
        - kitchen
        - health
        - interior
        - av
        - sound
        - audio
        - pc
        - peripheral
        - supply
        - mobile
        - camera
        - car
        - diy
        - outdoor
        - apparel
        - watch
        - game
        - toy
        - hobby
        - train
        - cg
        - liquor
        - drug
    JoshinColor:
      type: string
      enum:
        - black
        - white
        - grey
        - red
        - pink
        - purple
        - blue
        - green
        - yellow_orange
        - brown
        - beige
        - silver
        - gold
        - clear
        - other
    JoshinMedicineAudience:
      type: string
      enum:
        - both
        - adult
        - child
    JoshinMedicineClass:
      type: string
      enum:
        - designated_class_2
        - class_2
        - class_3
    JoshinDosageForm:
      type: string
      enum:
        - powder
        - granules
        - fine_granules
        - tablet
        - pill
        - capsule
        - troche
        - lozenge
        - jelly_drop
        - oral_liquid
        - topical_liquid
        - ointment
        - plaster
        - poultice
        - adhesive_plaster
        - suppository
        - infusion
        - decoction
        - chewing_gum
        - other_oral
        - other_topical
        - other
    JoshinProductSort:
      type: string
      enum:
        - relevance
        - release_date_desc
        - release_date_asc
        - price_asc
        - price_desc
        - model_code
        - most_reviewed
        - best_rated
    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

````