Skip to main content
POST
/
api
/
rakuten
/
shops
/
items
/rakuten/shops/items
curl --request POST \
  --url https://api.anysite.io/api/rakuten/shops/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "shop": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@rakuten_shop_item",
    "item_code": "<string>",
    "title": "<string>",
    "subtitle": "<string>",
    "image": "<string>",
    "price": 123,
    "price_max": 123,
    "currency": "JPY",
    "point": 123,
    "is_free_shipping": false,
    "is_sold_out": false,
    "rating": 123,
    "review_count": 123,
    "category_id": 123,
    "category": "<string>",
    "genre_breadcrumbs": [],
    "shop": {
      "@type": "@rakuten_shop_item_shop",
      "id": 123,
      "name": "<string>",
      "alias": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
shop
string
required

Rakuten Ichiba shop as its shop code or a full shop URL

Minimum string length: 1
Examples:

"sawaicoffee-tea"

"https://www.rakuten.co.jp/sawaicoffee-tea/"

count
integer
required

Max number of items 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
url
string
required
@type
string
default:@rakuten_shop_item
item_code
string | null
title
string | null
subtitle
string | null
image
string | null
price
number | null
price_max
number | null
currency
string
default:JPY
point
integer | null
is_free_shipping
boolean
default:false
is_sold_out
boolean
default:false
rating
number | null
review_count
integer | null
category_id
integer | null
category
string | null
genre_breadcrumbs
string[]
shop
RakutenShopItemShop · object