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

# /iosys/products/search

> Search the Iosys (イオシス) catalogue of second-hand and unused phones, tablets, feature phones, mobile routers, wearables, audio, accessories and computers by keyword, narrowed by catalogue path, condition rank, manufacturer, genre, model series, price, storage capacity, operating system, computer traits and release month, in five orderings. Each result is one physical batch of one model in one condition grade, which is what the shop lists.

**Price:** 1 credit

**⚠️ Common errors:** 422: Malformed category (an Iosys catalogue path, e.g. 'smartphone/iphone13/simfree')



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/iosys/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/iosys/products/search:
    post:
      tags:
        - /iosys
      summary: /iosys/products/search
      description: >-
        Search the Iosys (イオシス) catalogue of second-hand and unused phones,
        tablets, feature phones, mobile routers, wearables, audio, accessories
        and computers by keyword, narrowed by catalogue path, condition rank,
        manufacturer, genre, model series, price, storage capacity, operating
        system, computer traits and release month, in five orderings. Each
        result is one physical batch of one model in one condition grade, which
        is what the shop lists.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: Malformed category (an Iosys catalogue path,
        e.g. 'smartphone/iphone13/simfree')
      operationId: __api_iosys_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/IosysProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IosysProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IosysProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        exclude_keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
        condition:
          anyOf:
            - items:
                $ref: '#/components/schemas/IosysCondition'
              type: array
            - type: 'null'
        brand:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        genre:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        series:
          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'
        capacity_gb:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        capacity_min_gb:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        capacity_max_gb:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        os:
          anyOf:
            - items:
                $ref: '#/components/schemas/IosysOs'
              type: array
            - type: 'null'
        pc_features:
          anyOf:
            - items:
                $ref: '#/components/schemas/IosysPcFeature'
              type: array
            - type: 'null'
        release_year_min:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1990
            - type: 'null'
        release_month_min:
          anyOf:
            - type: integer
              maximum: 12
              minimum: 1
            - type: 'null'
        release_year_max:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1990
            - type: 'null'
        release_month_max:
          anyOf:
            - type: integer
              maximum: 12
              minimum: 1
            - type: 'null'
        sort:
          $ref: '#/components/schemas/IosysSort'
          default: listed
      type: object
      required:
        - count
    IosysProduct:
      properties:
        '@type':
          type: string
          default: IosysProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        stock:
          anyOf:
            - type: integer
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        condition_id:
          anyOf:
            - type: string
            - type: 'null'
        warranty:
          anyOf:
            - type: string
            - type: 'null'
        warranty_id:
          anyOf:
            - type: string
            - type: 'null'
        accessories:
          anyOf:
            - type: string
            - type: 'null'
        note:
          anyOf:
            - type: string
            - type: 'null'
        spec_text:
          anyOf:
            - type: string
            - type: 'null'
        spec:
          additionalProperties:
            type: string
          type: object
          default: {}
        storage_gb:
          anyOf:
            - type: integer
            - type: 'null'
        sim_size:
          anyOf:
            - type: string
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        model_id:
          anyOf:
            - type: string
            - type: 'null'
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        category_path:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - type: string
            - type: 'null'
        genre_id:
          anyOf:
            - type: string
            - type: 'null'
        genre_slug:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        department_id:
          anyOf:
            - type: string
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        section_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IosysCondition:
      type: string
      enum:
        - new
        - rank_a
        - rank_b
        - rank_c
        - used
    IosysOs:
      type: string
      enum:
        - windows_11
        - windows_10
        - windows_8
        - windows_7
        - mac
        - chrome
        - other
    IosysPcFeature:
      type: string
      enum:
        - windows_10
        - mac_os
        - standard_laptop
        - mobile_laptop
        - desktop
        - telework
        - core_i3
        - core_i5
        - core_i7
        - memory_8gb_plus
        - geforce
        - ssd
        - numeric_keypad
        - high_resolution
        - blu_ray
        - large_storage
    IosysSort:
      type: string
      enum:
        - listed
        - stock_desc
        - stock_asc
        - 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

````