Endpoint Playground
Test Crawlora's Yahoo Shopping Category API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yahoo-shopping/category?category=beauty" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | beauty | Yahoo Shopping section |
| page | integer | No | 1-based page number, defaults to 1 |
{
"code": 200,
"msg": "OK",
"data": {
"category": "beauty",
"items": [
{
"id": "215349611",
"title": "Brooke Shields, 61, on thinning hair, aging and the products she swears by for 2026",
"url": "https://shopping.yahoo.com/beauty/article/brooke-shields-61-on-thinning-hair-aging-and-the-products-she-swears-by-for-2026-215349611.html",
"category": "beauty",
"thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/brooke.jpg"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a Yahoo Shopping section's editorial story feed: title, destination URL, category, and thumbnail image for each story, with page-based pagination. Sourced from Yahoo Shopping's own server-rendered section pages.
{
"code": 200,
"msg": "OK",
"data": {
"category": "beauty",
"items": [
{
"id": "215349611",
"title": "Brooke Shields, 61, on thinning hair, aging and the products she swears by for 2026",
"url": "https://shopping.yahoo.com/beauty/article/brooke-shields-61-on-thinning-hair-aging-and-the-products-she-swears-by-for-2026-215349611.html",
"category": "beauty",
"thumbnail_url": "https://s.yimg.com/lo/mysterio/api/example/brooke.jpg"
}
],
"pagination": {
"page": 1,
"next_page": 2
}
}
}curl "https://api.crawlora.net/api/v1/yahoo-shopping/category?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"