Skip to main content
POST
/
api
/
rakuten
/
items
/
reviews
/rakuten/items/reviews
curl --request POST \
  --url https://api.anysite.io/api/rakuten/items/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@rakuten_item_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "author_sex": "<string>",
    "author_age_range": 123,
    "posted_date": "<string>",
    "ordered_date": "<string>",
    "helpful_count": 123,
    "purpose_tags": [],
    "sku_info": "<string>",
    "images": [],
    "media": [],
    "shop_reply": "<string>",
    "shop_reply_date": "<string>"
  }
]

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/"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@rakuten_item_review
rating
integer | null
title
string | null
text
string | null
author
string | null
author_sex
string | null
author_age_range
integer | null
posted_date
string | null
ordered_date
string | null
helpful_count
integer | null
purpose_tags
string[]
sku_info
string | null
images
string[]
media
RakutenItemReviewMedia · object[]
shop_reply
string | null
shop_reply_date
string | null