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

> Search the second-hand catalogue of Sofmap's リコレ！ (Recore) store by keyword and/or category, narrowed by condition grade, maker, price range, warehouse versus shop stock, how many copies of a model are held and the category-specific specification facets, with five orderings. Returns one card per model with its JAN, photo, price range across the copies in stock, condition grade and how many copies are held.

**Price:** 1 credit

**⚠️ Common errors:** 422: An unknown subcategory slug or specification facet id was given



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/sofmap/used_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/sofmap/used_products/search:
    post:
      tags:
        - /sofmap
      summary: /sofmap/used_products/search
      description: >-
        Search the second-hand catalogue of Sofmap's リコレ！ (Recore) store by
        keyword and/or category, narrowed by condition grade, maker, price
        range, warehouse versus shop stock, how many copies of a model are held
        and the category-specific specification facets, with five orderings.
        Returns one card per model with its JAN, photo, price range across the
        copies in stock, condition grade and how many copies are held.


        **Price:** 1 credit


        **⚠️ Common errors:** 422: An unknown subcategory slug or specification
        facet id was given
      operationId: __api_sofmap_used_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/SofmapUsedProductsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SofmapUsedProductCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SofmapUsedProductsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        category:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedCategory'
            - type: 'null'
        subcategory:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        used_rank:
          anyOf:
            - items:
                $ref: '#/components/schemas/SofmapUsedRank'
              type: array
            - type: 'null'
        maker:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        stock_type:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedStockType'
            - type: 'null'
        stock_count:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedStockCount'
            - type: 'null'
        specs:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
        count:
          type: integer
          minimum: 1
        price_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        sort:
          $ref: '#/components/schemas/SofmapUsedSort'
          default: newest_arrival
      type: object
      required:
        - count
    SofmapUsedProductCard:
      properties:
        '@type':
          type: string
          default: SofmapUsedProductCard
        id:
          type: string
        jan:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        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_max:
          anyOf:
            - type: number
            - type: 'null'
        price_without_tax:
          anyOf:
            - type: number
            - type: 'null'
        price_without_tax_max:
          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'
        unit_count:
          anyOf:
            - type: integer
            - 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'
        stock_type:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedStockType'
            - type: 'null'
        store_code:
          anyOf:
            - type: string
            - 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:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SofmapUsedCategory:
      type: string
      enum:
        - pc
        - gaming
        - smp
        - tab
        - wtc
        - mac
        - iphone
        - ipad
        - surface
        - video
        - cam
        - dslr
        - lens
        - headphone
        - audio
        - visual
        - rec-visual
        - device
        - parts
        - game
        - kaden-life
        - kaden-light
        - kaden-joho
        - kaden-season
        - kaden-kitchen1
        - kaden-kitchen2
        - kaden-appearance
        - kaden-beauty
    SofmapUsedRank:
      type: string
      enum:
        - S
        - A
        - B
        - C
        - D
        - E
    SofmapUsedStockType:
      type: string
      enum:
        - warehouse
        - store
    SofmapUsedStockCount:
      type: string
      enum:
        - up_to_5
        - 5_to_9
        - 10_to_19
        - 20_or_more
    SofmapUsedSort:
      type: string
      enum:
        - newest_arrival
        - release_date_desc
        - release_date_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

````