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

> Get one Iosys (イオシス) listing by its product number or product URL: the exact second-hand unit the shop is selling with its price, condition rank, warranty, how many copies are in stock, the bundled accessories, the shop's own note on that unit, the full specification sheet as text and as a field-by-field table, storage, SIM size, colour, release month, photographs, the model family it belongs to and its place in the catalogue taxonomy.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed product number but no such listing on iosys.co.jp), 422: Malformed product (an Iosys product number is digits only, e.g. '227036')



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/iosys/products
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:
    post:
      tags:
        - /iosys
      summary: /iosys/products
      description: >-
        Get one Iosys (イオシス) listing by its product number or product URL: the
        exact second-hand unit the shop is selling with its price, condition
        rank, warranty, how many copies are in stock, the bundled accessories,
        the shop's own note on that unit, the full specification sheet as text
        and as a field-by-field table, storage, SIM size, colour, release month,
        photographs, the model family it belongs to and its place in the
        catalogue taxonomy.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed product number
        but no such listing on iosys.co.jp), 422: Malformed product (an Iosys
        product number is digits only, e.g. '227036')
      operationId: __api_iosys_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IosysProductsPayload'
      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:
    IosysProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
      type: object
      required:
        - product
    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
    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

````