Instructables Scraper avatar
Instructables Scraper
Try for free

3 days trial then $15.00/month - No credit card required now

View all Actors
Instructables Scraper

Instructables Scraper

epctex/instructables-scraper
Try for free

3 days trial then $15.00/month - No credit card required now

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!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.instructables.com/member/zaphodd42/",
9    "https://www.instructables.com/Make-PVC-Look-Like-Wood/",
10    "https://www.instructables.com/search/?q=project&projects=all",
11    "https://www.instructables.com/living/",
12    "https://www.instructables.com/member/zaphodd42/instructables/"
13  ],
14  "search": "arduino",
15  "maxItems": 20,
16  "endPage": 1,
17  "extendOutputFunction": "($) => { return {} }",
18  "customMapFunction": "(object) => { return {...object} }",
19  "proxy": {
20    "useApifyProxy": true
21  }
22}
23EOF
24
25# Run the Actor using an HTTP API
26# See the full API reference at https://docs.apify.com/api/v2
27curl "https://api.apify.com/v2/acts/epctex~instructables-scraper/runs?token=$API_TOKEN" \
28  -X POST \
29  -d @input.json \
30  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Apr 2023
  • Modified 1 day ago