Skip to main content
POST
/
api
/
yahoo_shopping
/
stores
/yahoo_shopping/stores
curl --request POST \
  --url https://api.anysite.io/api/yahoo_shopping/stores \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "store": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@yahoo_shopping_store",
    "name": "<string>",
    "description": "<string>",
    "rating": 123,
    "review_count": 123,
    "item_count": 123,
    "image": "<string>",
    "is_open": false,
    "badge_type": 123,
    "phone": "<string>",
    "categories": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
store
string
required

Yahoo! Shopping store as its alias or a full store URL

Minimum string length: 1
Examples:

"mobilestation"

"https://store.shopping.yahoo.co.jp/mobilestation/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
alias
string
required
url
string
required
@type
string
default:@yahoo_shopping_store
name
string | null
description
string | null
rating
number | null
review_count
integer | null
item_count
integer | null
image
string | null
is_open
boolean
default:false
badge_type
integer | null
phone
string | null
categories
YahooShoppingStoreCategory ยท object[]