Endpoint Playground
Test Crawlora's Best Buy Subcategories 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/bestbuy/category/subcategories?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | string | Yes | Best Buy category id |
{
"code": 200,
"msg": "OK",
"data": {
"category_id": "pcmcat138500050001",
"count": 12,
"source_url": "https://www.bestbuy.com/site/x/x/pcmcat138500050001.c?id=pcmcat138500050001&intl=nosplash",
"fetched_at": "2026-08-16T10:00:00Z",
"subcategories": [
{
"id": "pcmcat309300050015",
"name": "2-in-1 Laptops",
"url": "https://www.bestbuy.com/site/x/x/pcmcat309300050015.c?id=pcmcat309300050015&intl=nosplash"
},
{
"id": "pcmcat244900050010",
"name": "Chromebooks",
"url": "https://www.bestbuy.com/site/x/x/pcmcat244900050010.c?id=pcmcat244900050010&intl=nosplash"
},
{
"id": "pcmcat287600050003",
"name": "Gaming Laptops",
"url": "https://www.bestbuy.com/site/x/x/pcmcat287600050003.c?id=pcmcat287600050003&intl=nosplash"
}
]
}
}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 Best Buy category's own sibling/child category set (name, category id, url), sourced from that category page's own "Category" filter facet. Each id is directly usable as bestbuy_category's category_id input. category_id is a Best Buy category id, e.g. pcmcat138500050001, found in a category page URL's trailing <id>.c?id=<id> segment. A leaf category with no siblings returns an empty list, not an error.
{
"code": 200,
"msg": "OK",
"data": {
"category_id": "pcmcat138500050001",
"count": 12,
"source_url": "https://www.bestbuy.com/site/x/x/pcmcat138500050001.c?id=pcmcat138500050001&intl=nosplash",
"fetched_at": "2026-08-16T10:00:00Z",
"subcategories": [
{
"id": "pcmcat309300050015",
"name": "2-in-1 Laptops",
"url": "https://www.bestbuy.com/site/x/x/pcmcat309300050015.c?id=pcmcat309300050015&intl=nosplash"
},
{
"id": "pcmcat244900050010",
"name": "Chromebooks",
"url": "https://www.bestbuy.com/site/x/x/pcmcat244900050010.c?id=pcmcat244900050010&intl=nosplash"
},
{
"id": "pcmcat287600050003",
"name": "Gaming Laptops",
"url": "https://www.bestbuy.com/site/x/x/pcmcat287600050003.c?id=pcmcat287600050003&intl=nosplash"
}
]
}
}curl "https://api.crawlora.net/api/v1/bestbuy/category/subcategories?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"