Skip to main content
POST
/
api
/
rakuten
/
items
/rakuten/items
curl --request POST \
  --url https://api.anysite.io/api/rakuten/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@rakuten_item",
    "item_code": "<string>",
    "title": "<string>",
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "price_max": 123,
    "currency": "JPY",
    "subscription_price": 123,
    "subscription_price_max": 123,
    "point_rate": 123,
    "is_free_shipping": false,
    "is_tax_included": false,
    "rating": 123,
    "review_count": 123,
    "category_id": 123,
    "category": "<string>",
    "genre_breadcrumbs": [],
    "shop": {
      "@type": "@rakuten_item_shop",
      "id": 123,
      "name": "<string>",
      "alias": "<string>"
    },
    "variant_axes": [],
    "variants": [],
    "attributes": {},
    "is_in_stock": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
item
string
required

Rakuten Ichiba item as shop_code/item_code or a full item URL

Minimum string length: 1
Examples:

"sawaicoffee-tea/ac-sale-1960"

"https://item.rakuten.co.jp/sawaicoffee-tea/ac-sale-1960/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@rakuten_item
item_code
string | null
title
string | null
description
string | null
image
string | null
images
string[]
price
number | null
price_max
number | null
currency
string
default:JPY
subscription_price
number | null
subscription_price_max
number | null
point_rate
integer | null
is_free_shipping
boolean
default:false
is_tax_included
boolean
default:false
rating
number | null
review_count
integer | null
category_id
integer | null
category
string | null
genre_breadcrumbs
string[]
shop
RakutenItemShop · object
variant_axes
RakutenItemVariantAxis · object[]
variants
RakutenItemSku · object[]
attributes
Attributes · object
is_in_stock
boolean
default:false