How to integrate CoreClaw's Instagram scraper with Make

:bullseye: What is your goal?

How to integrate CoreClaw’s Instagram scraper with Make

scraper script page:

:thinking: 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:

  1. skip the app list, there usually isnt a native app for smaller scraper tools. coreclaw almost certainly exposes a rest endpoint or webhook
    1. hit that endpoint from postman or even just curl first, so you see the raw response shape before you build the scenario around it
      1. 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
    2. 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