#!/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.etsy.com/listing/1905926795/foldable-american-pine-laptop-bed-desk" \ --data-urlencode 'extract_rules={"title":"h1[data-buy-box-listing-title]","price":"p[data-buy-box-region-price]","image":"img[data-listing-main-image]"}' \ --data-urlencode "proxy_type=premium" \ --data-urlencode "response_type=json"