$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "mode": "items",
< "items": [
< {
< "asin": "B0GOOD123",
< "title": "Silicone drawer organizer set",
< "marketplace": "US",
< "category": "Kitchen",
< "price": 29.99,
< "reviewCount": 142,
< "rating": 4.2,
< "bestSellerRank": 1850,
< "sellerCount": 2,
< "monthlySales": 1200,
< "marginPercent": 38,
< "url": "https://www.amazon.com/dp/B0GOOD123",
< "features": [
< "silicone",
< "dishwasher safe",
< "space saving"
< ]
< },
< {
< "ASIN": "B0QUAL123",
< "productTitle": "Stackable pantry organizer bins",
< "country": "US",
< "department": "Home",
< "currentPrice": 24.5,
< "ratingsCount": 310,
< "stars": 3.7,
< "rank": 4200,
< "sellers": 2,
< "estimatedMonthlySales": 600,
< "profitMargin": 31,
< "complaints": "Customers complain about cracked lids and weak handles.",
< "productUrl": "https://www.amazon.com/dp/B0QUAL123"
< },
< {
< "asin": "B0RISKY",
< "title": "Seasonal fragile glass diffuser with patent note",
< "marketplace": "US",
< "category": "Home",
< "price": 32,
< "reviewCount": 90,
< "rating": 4.1,
< "bestSellerRank": 2100,
< "sellerCount": 1,
< "monthlySales": 900,
< "marginPercent": 42,
< "riskNotes": "Potential patent issue, fragile packaging, seasonal demand.",
< "url": "https://www.amazon.com/dp/B0RISKY"
< }
< ],
< "sellerProfile": {
< "targetMarketplace": "US",
< "targetCategories": [
< "Kitchen",
< "Home"
< ],
< "avoidCategories": [
< "Supplements"
< ],
< "targetKeywords": [
< "silicone",
< "organizer"
< ],
< "avoidKeywords": [
< "medical"
< ],
< "minPrice": 15,
< "maxPrice": 60,
< "minMarginPercent": 25,
< "maxReviewCount": 500,
< "minRatingGap": 0.3,
< "maxSellers": 5,
< "maxWeightLb": 3,
< "riskKeywords": [
< "patent",
< "hazmat",
< "gated",
< "fragile",
< "seasonal"
< ],
< "capitalBudget": 5000
< },
< "scrapedAt": "2026-07-08T00:00:00.000Z"
<}
<EOF
$curl "https://api.apify.com/v2/acts/rotvuvo~amazon-product-opportunity-gap-scorer/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'