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

> Search the Iosys (イオシス) junk stock, the faulty and broken phones, tablets, feature phones, computers and accessories the shop sells over the counter only. Each listing carries its price, grade, the fault the shop recorded, the accessories that came with it, the specification of the model, the arrival date and which branches physically hold it.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/iosys/products/junk
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/junk:
    post:
      tags:
        - /iosys
      summary: /iosys/products/junk
      description: >-
        Search the Iosys (イオシス) junk stock, the faulty and broken phones,
        tablets, feature phones, computers and accessories the shop sells over
        the counter only. Each listing carries its price, grade, the fault the
        shop recorded, the accessories that came with it, the specification of
        the model, the arrival date and which branches physically hold it.


        **Price:** 1 credit
      operationId: __api_iosys_products_junk_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IosysProductsJunkPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IosysJunkProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IosysProductsJunkPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        count:
          type: integer
          minimum: 1
        condition:
          anyOf:
            - $ref: '#/components/schemas/IosysJunkRank'
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        genre_id:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        store_id:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/IosysJunkSort'
          default: arrival_desc
      type: object
      required:
        - count
    IosysJunkProduct:
      properties:
        '@type':
          type: string
          default: IosysJunkProduct
        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'
        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: {}
        arrived_at:
          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'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        stores:
          items:
            $ref: '#/components/schemas/IosysJunkStock'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IosysJunkRank:
      type: string
      enum:
        - rank_d
        - junk
    IosysJunkSort:
      type: string
      enum:
        - arrival_desc
        - stock_desc
        - price_asc
    IosysJunkStock:
      properties:
        '@type':
          type: string
          default: IosysJunkStock
        store_id:
          type: string
        store:
          anyOf:
            - type: string
            - type: 'null'
        stock:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - store_id
    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

````