Czech Food Delivery Checker(Košík.cz)

  • drobnikj/czech-food-delivery-checker
  • Modified
  • Users 7
  • Runs 37k
  • Created by Author's avatarJakub Drobník

The scraper checks available time slots to deliver food from Košík.cz. It sends you mail every time new slot appears.

Czech Food Delivery Checker(Košík.cz)

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "notifyEmail": "example@email.com",
  "street": "Štěpánská 704/61",
  "city": "Praha 1 - Nové Město",
  "zip": "11000"
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/drobnikj~czech-food-delivery-checker/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'