I published copy-paste Node demos for five public-data APIs on RapidAPI (free tier):
Repo: https://github.com/walnutserv-byte/beam-api-demos
| Need | API | Hub |
|---|---|---|
| YouTube captions | CaptionBeam | https://rapidapi.com/WRT/api/captionbeam |
| IG profile + posts | InstaBeam | https://rapidapi.com/WRT/api/instabeam |
| TikTok user | TikBeam | https://rapidapi.com/WRT/api/tikbeam |
| Amazon ASIN | AmzBeam | https://rapidapi.com/WRT/api/amzbeam |
| Reddit subreddit | RedBeam | https://rapidapi.com/WRT/api/redbeam |
Postman collection is in the repo (Beam-APIs.postman_collection.json).
const res = await fetch(
"https://instabeam.p.rapidapi.com/profile?username=natgeo&count=6",
{
headers: {
"X-RapidAPI-Key": process.env.RAPIDAPI_KEY,
"X-RapidAPI-Host": "instabeam.p.rapidapi.com",
},
}
);
console.log(await res.json());
Built these because Graph App Review + brittle scrapers kept slowing side projects. Feedback welcome.
Top comments (0)