Skip to main content
POST
/
api
/
yahoo_shopping
/
products
/yahoo_shopping/products
curl --request POST \
  --url https://api.anysite.io/api/yahoo_shopping/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@yahoo_shopping_product",
    "item_code": "<string>",
    "title": "<string>",
    "catch_copy": "<string>",
    "description": "<string>",
    "brand": "<string>",
    "brand_id": "<string>",
    "jan_code": "<string>",
    "image": "<string>",
    "images": [],
    "has_video": false,
    "video_thumbnail": "<string>",
    "price": 123,
    "premium_price": 123,
    "list_price": 123,
    "tax_excluded_price": 123,
    "currency": "JPY",
    "point": 123,
    "point_rate": 123,
    "is_free_shipping": false,
    "is_on_sale": false,
    "is_used": false,
    "used_condition": "<string>",
    "is_in_stock": false,
    "order_count_7day": 123,
    "rating": 123,
    "review_count": 123,
    "category": "<string>",
    "category_id": "<string>",
    "category_breadcrumbs": [],
    "specifications": [],
    "store": {
      "@type": "@yahoo_shopping_product_store",
      "id": "<string>",
      "alias": "<string>",
      "name": "<string>",
      "rating": 123,
      "rating_count": 123,
      "cancel_ratio": 123,
      "description": "<string>"
    },
    "variant_axes": [],
    "variants": [],
    "offers_summary": {
      "@type": "@yahoo_shopping_product_offers_summary",
      "item_count": 123,
      "min_price": 123,
      "new_min_price": 123,
      "used_min_price": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
item
string
required

Yahoo! Shopping product as store_alias/item_code or a full product URL

Minimum string length: 1
Examples:

"mobilestation/friphone17e256gbm"

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

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:@yahoo_shopping_product
item_code
string | null
title
string | null
catch_copy
string | null
description
string | null
brand
string | null
brand_id
string | null
jan_code
string | null
image
string | null
images
string[]
has_video
boolean
default:false
video_thumbnail
string | null
price
integer | null
premium_price
integer | null
list_price
integer | null
tax_excluded_price
integer | null
currency
string
default:JPY
point
integer | null
point_rate
number | null
is_free_shipping
boolean
default:false
is_on_sale
boolean
default:false
is_used
boolean
default:false
used_condition
string | null
is_in_stock
boolean
default:false
order_count_7day
integer | null
rating
number | null
review_count
integer | null
category
string | null
category_id
string | null
category_breadcrumbs
string[]
specifications
YahooShoppingProductSpec ยท object[]
store
YahooShoppingProductStore ยท object
variant_axes
YahooShoppingProductVariantAxis ยท object[]
variants
YahooShoppingProductSku ยท object[]
offers_summary
YahooShoppingProductOffersSummary ยท object