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

# /mandarake/items

> Get one Mandarake (まんだらけ) second-hand item by its catalogue item id or item URL: name, live price and stock, the branch that holds it, the branch's own stock number, the ten-point condition grade, category breadcrumbs, series and edition tags, the R18 flag, package size and weight, photos and the same item offered by other Mandarake branches with their prices. Texts are available in Japanese, English and Chinese.

**Price:** 1 credit

**⚠️ Common errors:** 412: Item not found (well-formed item id but no such item on Mandarake)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/mandarake/items
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/mandarake/items:
    post:
      tags:
        - /mandarake
      summary: /mandarake/items
      description: >-
        Get one Mandarake (まんだらけ) second-hand item by its catalogue item id or
        item URL: name, live price and stock, the branch that holds it, the
        branch's own stock number, the ten-point condition grade, category
        breadcrumbs, series and edition tags, the R18 flag, package size and
        weight, photos and the same item offered by other Mandarake branches
        with their prices. Texts are available in Japanese, English and Chinese.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Item not found (well-formed item id but no
        such item on Mandarake)
      operationId: __api_mandarake_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MandarakeItemsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MandarakeItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MandarakeItemsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
        lang:
          $ref: '#/components/schemas/MandarakeLang'
          default: en
      type: object
      required:
        - item
    MandarakeItem:
      properties:
        '@type':
          type: string
          default: MandarakeItem
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        store:
          anyOf:
            - type: string
            - type: 'null'
        stock_number:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_with_tax:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        is_in_stock:
          type: boolean
          default: false
        condition:
          anyOf:
            - type: string
            - type: 'null'
        condition_rank:
          anyOf:
            - type: integer
            - type: 'null'
        condition_rank_max:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        categories:
          items:
            $ref: '#/components/schemas/MandarakeItemCategory'
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        is_new_arrival:
          type: boolean
          default: false
        is_adult:
          type: boolean
          default: false
        package_size:
          anyOf:
            - type: string
            - type: 'null'
        width_mm:
          anyOf:
            - type: number
            - type: 'null'
        height_mm:
          anyOf:
            - type: number
            - type: 'null'
        depth_mm:
          anyOf:
            - type: number
            - type: 'null'
        weight_g:
          anyOf:
            - type: number
            - type: 'null'
        notes:
          anyOf:
            - type: string
            - type: 'null'
        other_stores:
          items:
            $ref: '#/components/schemas/MandarakeOtherStoreOffer'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MandarakeLang:
      type: string
      enum:
        - ja
        - en
        - zh
    MandarakeItemCategory:
      properties:
        '@type':
          type: string
          default: MandarakeItemCategory
        id:
          type: string
        name:
          type: string
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - name
    MandarakeOtherStoreOffer:
      properties:
        '@type':
          type: string
          default: MandarakeOtherStoreOffer
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        store:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        is_sold_out:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
    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

````