Alert

Actor is under maintenance

This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

Ubuntu Images Scraper

  • lukas.novotny/ubuntu-images-scraper
  • Modified
  • Users 5
  • Runs 709
  • Created by Author's avatarLukas Novotny

This scraper enables you to retrieve Ubuntu image ID(s) available on various public clouds. Ubuntu is a complete Linux operating system, freely available with both community and professional support.

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'
{
  "zone": "us-east-1",
  "name": "focal",
  "version": "20.04",
  "arch": "amd64",
  "instanceType": "hvm-ssd",
  "release": "Any",
  "id": "Any",
  "numberOfResults": 1
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/lukas.novotny~ubuntu-images-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'