$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "keywords": [
< "dog leash",
< "cat toy"
< ],
< "dropshipOnly": true,
< "includeEnglishTranslation": true,
< "includeLandedCost": true,
< "includeCompliance": true,
< "excludeFoodProducts": true,
< "includeDescriptionImages": true,
< "offerIds": [],
< "mintOnMiss": true,
< "detailIdentityRotation": false,
< "skipDetails": false,
< "proxyConfiguration": {
< "useApifyProxy": true,
< "apifyProxyGroups": [
< "RESIDENTIAL"
< ],
< "apifyProxyCountry": "CN"
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/crawleast~china-pet-supplies-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'