Instructables Scraper

  • epctex/instructables-scraper
  • Modified
  • Users 2
  • Runs 625
  • Created by Author's avatarepctex

Retrieve all the information right away from Instructables. Get all the project and user detailed information without any limits or restrictions. Titles, descriptions, images, comments, steps, and detailed instructions about the projects are ready in a structural way. Easy usage, super fast!

Free trial for 3 days

Then $15.00/month

No credit card required now

Instructables Scraper

Free trial for 3 days

Then $15.00/month

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'
{
  "startUrls": [
    "https://www.instructables.com/member/zaphodd42/",
    "https://www.instructables.com/Make-PVC-Look-Like-Wood/",
    "https://www.instructables.com/search/?q=project&projects=all",
    "https://www.instructables.com/living/",
    "https://www.instructables.com/member/zaphodd42/instructables/"
  ],
  "search": "arduino",
  "maxItems": 20,
  "endPage": 1,
  "extendOutputFunction": "($) => { return {} }",
  "customMapFunction": "(object) => { return {...object} }",
  "proxy": {
    "useApifyProxy": true
  }
}
EOF

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