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

# /sofmap/used_products

> Get every second-hand unit Sofmap's リコレ！ (Recore) store holds under one JAN code. Each physical unit is returned separately with its own condition grade, price, photo, bundled accessories, cosmetic condition note, missing parts, full specification table and the shop or warehouse holding it.

**Price:** 1 credit

**⚠️ Common errors:** 412: No second-hand unit is listed under this JAN code on used.sofmap.com



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/sofmap/used_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/sofmap/used_products:
    post:
      tags:
        - /sofmap
      summary: /sofmap/used_products
      description: >-
        Get every second-hand unit Sofmap's リコレ！ (Recore) store holds under one
        JAN code. Each physical unit is returned separately with its own
        condition grade, price, photo, bundled accessories, cosmetic condition
        note, missing parts, full specification table and the shop or warehouse
        holding it.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No second-hand unit is listed under this JAN
        code on used.sofmap.com
      operationId: __api_sofmap_used_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SofmapUsedProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SofmapUsedProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SofmapUsedProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        jan:
          type: string
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - jan
        - count
    SofmapUsedProduct:
      properties:
        '@type':
          type: string
          default: SofmapUsedProduct
        jan:
          type: string
        binding_jan:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        product_url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        model_name:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_without_tax:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        used_rank:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedRank'
            - type: 'null'
        used_rank_description:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        accessories:
          anyOf:
            - type: string
            - type: 'null'
        accessories_note:
          anyOf:
            - type: string
            - type: 'null'
        condition_note:
          anyOf:
            - type: string
            - type: 'null'
        missing_parts:
          anyOf:
            - type: string
            - type: 'null'
        spec_highlights:
          anyOf:
            - type: string
            - type: 'null'
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        stock_type:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedStockType'
            - type: 'null'
        store_code:
          anyOf:
            - type: string
            - type: 'null'
        stock_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_new_arrival:
          type: boolean
          default: false
        is_price_reduced:
          type: boolean
          default: false
        listed_at:
          anyOf:
            - type: integer
            - type: 'null'
        price_reduced_at:
          anyOf:
            - type: integer
            - type: 'null'
        released_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - jan
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SofmapUsedRank:
      type: string
      enum:
        - S
        - A
        - B
        - C
        - D
        - E
    SofmapUsedStockType:
      type: string
      enum:
        - warehouse
        - store
    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

````