Retail Shelf Gap Finder
Pricing
from $25.00 / 1,000 shelf gaps
Retail Shelf Gap Finder
Detect retail shelf gaps from ecommerce category, search, or product pages with availability, price, delivery, assortment, and reseller opportunity signals.
Retail Shelf Gap Finder
Pricing
from $25.00 / 1,000 shelf gaps
Detect retail shelf gaps from ecommerce category, search, or product pages with availability, price, delivery, assortment, and reseller opportunity signals.
You can access the Retail Shelf Gap Finder programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "startUrls": [10 { "url": "https://www.target.com/s?searchTerm=coffee" },11 { "url": "https://www.walmart.com/search?q=coffee" },12 ],13 "sourceTexts": [14 "Target coffee shelf shows BrewNorth Organic Dark Roast 12oz sold out online, pickup unavailable, comparable brands priced at $14.99, and only 3 organic dark roast options visible.",15 "Walmart search page for protein bars lists FitFuel Chocolate 12-pack at $19.88, delivery tomorrow, but the vanilla flavor is out of stock and several sponsored slots are occupied by competitor brands.",16 ],17}18
19# Run the Actor and wait for it to finish20run = client.actor("seeb/retail-shelf-gap-finder").call(run_input=run_input)21
22# Fetch and print Actor results from the run's dataset (if there are any)23print(f"๐พ Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")24for item in client.dataset(run.default_dataset_id).iterate_items():25 print(item)26
27# ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Retail Shelf Gap Finder API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: