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

> Get the category tree of Sofmap's リコレ！ (Recore) second-hand catalogue: every top-level category with its subcategories and, for both levels, the specification facets that category supports together with every value each facet accepts.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/sofmap/used_products/categories
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/categories:
    post:
      tags:
        - /sofmap
      summary: /sofmap/used_products/categories
      description: >-
        Get the category tree of Sofmap's リコレ！ (Recore) second-hand catalogue:
        every top-level category with its subcategories and, for both levels,
        the specification facets that category supports together with every
        value each facet accepts.


        **Price:** 1 credit
      operationId: __api_sofmap_used_products_categories_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SofmapUsedProductsCategoriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SofmapUsedCategoryEntry'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SofmapUsedProductsCategoriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          anyOf:
            - $ref: '#/components/schemas/SofmapUsedCategory'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    SofmapUsedCategoryEntry:
      properties:
        '@type':
          type: string
          default: SofmapUsedCategoryEntry
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        subcategories:
          items:
            $ref: '#/components/schemas/SofmapUsedSubcategory'
          type: array
          default: []
        facets:
          items:
            $ref: '#/components/schemas/SofmapUsedFacet'
          type: array
          default: []
      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
    SofmapUsedSubcategory:
      properties:
        '@type':
          type: string
          default: SofmapUsedSubcategory
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        facets:
          items:
            $ref: '#/components/schemas/SofmapUsedFacet'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    SofmapUsedFacet:
      properties:
        '@type':
          type: string
          default: SofmapUsedFacet
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            $ref: '#/components/schemas/SofmapUsedFacetValue'
          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
    SofmapUsedFacetValue:
      properties:
        '@type':
          type: string
          default: SofmapUsedFacetValue
        value:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - value
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````