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

# /rakuma/items/search

> Search Rakuma (fril.jp) listings with the marketplace's full filter set: keyword and excluded keyword, brand, category at any depth, clothing or shoe size, price range, item condition, on-sale or sold-out, authenticity-check coverage, official shop programmes (outlet, overseas import, food and household), minimum Rakuten point-back rate, anonymous shipping, seller-paid postage, and ordering by relevance, newest, likes or price. Sold-out listings keep their final price, which makes this a source of Japanese resale comparables. Each result carries id, name, price, sold flag, brand, category, seller id and image.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/rakuma/items/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/rakuma/items/search:
    post:
      tags:
        - /rakuma
      summary: /rakuma/items/search
      description: >-
        Search Rakuma (fril.jp) listings with the marketplace's full filter set:
        keyword and excluded keyword, brand, category at any depth, clothing or
        shoe size, price range, item condition, on-sale or sold-out,
        authenticity-check coverage, official shop programmes (outlet, overseas
        import, food and household), minimum Rakuten point-back rate, anonymous
        shipping, seller-paid postage, and ordering by relevance, newest, likes
        or price. Sold-out listings keep their final price, which makes this a
        source of Japanese resale comparables. Each result carries id, name,
        price, sold flag, brand, category, seller id and image.


        **Price:** 1 credit
      operationId: __api_rakuma_items_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RakumaItemsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RakumaItemCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RakumaItemsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          default: ''
        excluded_query:
          type: string
          default: ''
        brand_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        exclude_no_brand:
          type: boolean
          default: false
        category_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        size_id:
          anyOf:
            - type: integer
              exclusiveMinimum: 0
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        conditions:
          items:
            $ref: '#/components/schemas/RakumaItemCondition'
          type: array
          default: []
        transaction:
          $ref: '#/components/schemas/RakumaTransaction'
          default: all
        authenticity:
          items:
            $ref: '#/components/schemas/RakumaAuthenticity'
          type: array
          default: []
        business_types:
          items:
            $ref: '#/components/schemas/RakumaBusinessType'
          type: array
          default: []
        min_redeem_rate:
          anyOf:
            - $ref: '#/components/schemas/RakumaRedeemRate'
            - type: 'null'
        anonymous_shipping:
          type: boolean
          default: false
        postage_included:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/RakumaSort'
          default: relevance
        order:
          $ref: '#/components/schemas/RakumaSortOrder'
          default: desc
        count:
          type: integer
          maximum: 4000
          minimum: 1
      type: object
      required:
        - count
    RakumaItemCard:
      properties:
        '@type':
          type: string
          default: RakumaItemCard
        id:
          type: string
        internal_id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        is_sold:
          type: boolean
          default: false
        brand:
          anyOf:
            - $ref: '#/components/schemas/RakumaBrandRef'
            - type: 'null'
        category:
          anyOf:
            - $ref: '#/components/schemas/RakumaCategoryRef'
            - type: 'null'
        category_path:
          items:
            $ref: '#/components/schemas/RakumaCategoryRef'
          type: array
          default: []
        seller_id:
          anyOf:
            - type: integer
            - type: 'null'
        seller_type:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RakumaItemCondition:
      type: string
      enum:
        - new
        - almost_unused
        - no_visible_damage
        - slight_damage
        - damaged
        - poor
    RakumaTransaction:
      type: string
      enum:
        - all
        - on_sale
        - sold_out
    RakumaAuthenticity:
      type: string
      enum:
        - before_delivery
        - after_delivery
    RakumaBusinessType:
      type: string
      enum:
        - official_shops
        - exclude_official_shops
        - reuse_official
        - overseas_import
        - outlet
        - food_and_household
    RakumaRedeemRate:
      type: string
      enum:
        - any_rate
        - at_least_3
        - at_least_5
        - at_least_7
        - at_least_10
        - at_least_15
        - at_least_20
    RakumaSort:
      type: string
      enum:
        - relevance
        - created_at
        - like_count
        - price
    RakumaSortOrder:
      type: string
      enum:
        - asc
        - desc
    RakumaBrandRef:
      properties:
        '@type':
          type: string
          default: RakumaBrandRef
        id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    RakumaCategoryRef:
      properties:
        '@type':
          type: string
          default: RakumaCategoryRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      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

````