$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "imageUrls": [
< "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1200px-Cat03.jpg"
< ],
< "maxResultsPerImage": 20,
< "onlyNewMatches": false,
< "monitoringStateName": "default",
< "includeSimilarImages": true,
< "includeMatchingPages": true,
< "includeTags": true,
< "includeOtherSizes": true,
< "includeShoppingMatches": true,
< "proxyConfiguration": {
< "useApifyProxy": true
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/getascraper~yandex-reverse-image-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'