Walgreens Product Search
Pricing
from $10.00 / 1,000 results
Go to Apify Store

Walgreens Product Search
Scrapes Nike.com search results for a query and returns structured product listings with: - Product ID (style-color code), title, subtitle - URL and image - Pricing (current, original, sale, discount %, currency) - Product metadata (colors, colorways, badges) - Flags: best seller, just in
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Nike Product Search Actor
Scrapes Nike.com search results.
Input
| Field | Type | Default | Notes |
|---|---|---|---|
query | string | "air max" | Required. Search term passed to /w?q={query}. |
maxResults | int | 50 | Cap on rows returned after de-duplication. |
scrollSteps | int | 5 | Viewport-height scrolls after initial load. Nike lazy-mounts ~24 cards at a time; raise to 10+ for big queries. |
headless | bool | true | On Apify (Linux) the actor uses Xvfb regardless — leave true. |
proxyConfiguration | object | Apify Residential US | Datacenter proxies will fail. Residential US is the working configuration. |
Output
One JSON record per product card with 20 fields:
| Field | Type | Notes |
|---|---|---|
productId | string | null | Per-colorway style-color code from the PDP URL (e.g. HM9451-001). Used for dedup. |
title | string | Product title (e.g. Nike Air Max 90). |
subtitle | string | Category line (e.g. Men's Shoes, Big Kids' Shoes). |
url | string | Absolute PDP URL. |
image | string | Absolute image URL (CDN). |
price | number | null | Current price parsed as a float (sale price when on sale). |
priceText | string | null | Raw price text including currency symbol. |
originalPrice | string | null | Strike-through original price (only set on sale). |
salePrice | string | null | Current sale price (only set on sale). |
discountPercent | int | null | Computed: round((1 - sale/original) * 100). |
currency | string | null | Currency symbol or code parsed from the price text. |
colorCount | int | null | Number from the "5 Colors" badge on the card. |
colorways | string[] | null | Per-swatch aria-labels when Nike exposes them on the card. |
badge | string | null | Top-left ribbon text (Just In, Best Seller, Sustainable Materials, etc.). |
isSustainable | bool | Badge mentions sustainability / Move to Zero. |
isComingSoon | bool | Badge mentions "Coming Soon". |
isBestSeller | bool | Badge mentions "Best Seller". |
isJustIn | bool | Badge mentions "Just In". |
isMemberOnly | bool | Card is locked behind Nike member sign-in. |
Records with missing title are dropped before return. Duplicate productIds (Nike sometimes repeats cards across sponsored slots) are deduped.