#!/usr/bin/env bash # Ujeebu Scrape API + extract_rules (swap the URL for your own target). set -euo pipefail API_KEY="YOUR_API_KEY"; BASE="https://api.ujeebu.com" curl -fsS -G "$BASE/scrape" \ -H "ApiKey: $API_KEY" \ --data-urlencode "url=https://www.amazon.com/Atomic-Habits-Proven-Build-Break/dp/0735211299/" \ --data-urlencode 'extract_rules={"title":"#productTitle","price":".a-price .a-offscreen","rating":"#acrPopover .a-icon-alt","image":"#landingImage"}' \ --data-urlencode "proxy_type=premium" \ --data-urlencode "response_type=json"