What is your goal?
How to integrate CoreClaw’s Instagram scraper with Make
scraper script page:
What is the problem & what have you tried?
I don’t know how to use CoreClaw’s Instagram scraper with Make.
coreclaw’s docs are thin on this so you arent missing something obvious.
the usual pattern for wiring a third party scraper into make:
- skip the app list, there usually isnt a native app for smaller scraper tools. coreclaw almost certainly exposes a rest endpoint or webhook
-
- hit that endpoint from postman or even just curl first, so you see the raw response shape before you build the scenario around it
-
- call it with make’s http module, then put a parse json module right after so the response becomes fields you can map into whatever comes next
- does coreclaw’s page show an api key or auth token option anywhere, thats usually the first thing the http module needs in its headers