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

# /rakuten/items

> Get full Rakuten Ichiba item details by shop_code/item_code (or item URL): title, price range, subscription price, points, free-shipping, images, rating, review count, category, shop and SKU variants.

**Price:** 5 credits

**⚠️ Common errors:** 412: Item not found (well-formed shop_code/item_code but the item does not exist)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/rakuten/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/rakuten/items:
    post:
      tags:
        - /rakuten
      summary: /rakuten/items
      description: >-
        Get full Rakuten Ichiba item details by shop_code/item_code (or item
        URL): title, price range, subscription price, points, free-shipping,
        images, rating, review count, category, shop and SKU variants.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Item not found (well-formed
        shop_code/item_code but the item does not exist)
      operationId: __api_rakuten_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RakutenItemsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RakutenItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RakutenItemsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    RakutenItem:
      properties:
        '@type':
          type: string
          default: RakutenItem
        id:
          type: string
        item_code:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_max:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        subscription_price:
          anyOf:
            - type: number
            - type: 'null'
        subscription_price_max:
          anyOf:
            - type: number
            - type: 'null'
        point_rate:
          anyOf:
            - type: integer
            - type: 'null'
        is_free_shipping:
          type: boolean
          default: false
        is_tax_included:
          type: boolean
          default: false
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        genre_breadcrumbs:
          items:
            type: string
          type: array
          default: []
        shop:
          anyOf:
            - $ref: '#/components/schemas/RakutenItemShop'
            - type: 'null'
        variant_axes:
          items:
            $ref: '#/components/schemas/RakutenItemVariantAxis'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/RakutenItemSku'
          type: array
          default: []
        attributes:
          additionalProperties:
            type: string
          type: object
          default: {}
        is_in_stock:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RakutenItemShop:
      properties:
        '@type':
          type: string
          default: RakutenItemShop
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RakutenItemVariantAxis:
      properties:
        '@type':
          type: string
          default: RakutenItemVariantAxis
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
      type: object
    RakutenItemSku:
      properties:
        '@type':
          type: string
          default: RakutenItemSku
        variant_id:
          anyOf:
            - type: string
            - type: 'null'
        selector_values:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        subscription_price:
          anyOf:
            - type: number
            - type: 'null'
        point:
          anyOf:
            - type: integer
            - type: 'null'
        is_sold_out:
          type: boolean
          default: false
      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

````