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

> Get the filter catalogue of Sofmap's リコレ！ (Recore) second-hand store for one scope: every maker holding stock in it and the price bands the stock falls into, each with the number of copies behind it. The scope is described with the same fields as the second-hand search, so the catalogue matches the search it is going to be used with.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/sofmap/used_products/facets
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/facets:
    post:
      tags:
        - /sofmap
      summary: /sofmap/used_products/facets
      description: >-
        Get the filter catalogue of Sofmap's リコレ！ (Recore) second-hand store for
        one scope: every maker holding stock in it and the price bands the stock
        falls into, each with the number of copies behind it. The scope is
        described with the same fields as the second-hand search, so the
        catalogue matches the search it is going to be used with.


        **Price:** 1 credit
      operationId: __api_sofmap_used_products_facets_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SofmapUsedScopePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SofmapUsedProductFacets'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SofmapUsedScopePayload:
      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'
      type: object
    SofmapUsedProductFacets:
      properties:
        '@type':
          type: string
          default: SofmapUsedProductFacets
        unit_count:
          anyOf:
            - type: integer
            - type: 'null'
        model_count:
          anyOf:
            - type: integer
            - type: 'null'
        facets:
          items:
            $ref: '#/components/schemas/SofmapUsedIndexFacet'
          type: array
          default: []
      type: object
    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
    SofmapUsedIndexFacet:
      properties:
        '@type':
          type: string
          default: SofmapUsedIndexFacet
        id:
          type: string
        payload_field:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            $ref: '#/components/schemas/SofmapUsedFacetBucket'
          type: array
          default: []
      type: object
      required:
        - 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
    SofmapUsedFacetBucket:
      properties:
        '@type':
          type: string
          default: SofmapUsedFacetBucket
        value:
          type: string
        unit_count:
          anyOf:
            - type: integer
            - type: 'null'
        price_min:
          anyOf:
            - type: integer
            - type: 'null'
        price_max:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - value
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````