Find creators through a hashtag
Take the recent posts under a hashtag, collect the accounts behind them, and read each profile. Keep the ones in the follower band you pay for — with their bio links, so the outreach address is already on the row.
GET instagram/hashtag | × 1 | 4 cr |
GET instagram/profile | × 24 | 72 cr |
| per hashtag | 76 cr |
≈ $0.045 at the 250k pack
const API = 'https://api.scrapefield.com/v1';
const sf = (path, q) =>
fetch(API + '/' + path + '?' + new URLSearchParams(q), {
headers: { Authorization: 'Bearer ' + process.env.SCRAPEFIELD_KEY },
}).then((r) => r.json());
const q = { tag: 'sourdough', limit: 24 };
const { data: posts } = await sf('instagram/hashtag', q);
const handles = [...new Set(posts.map((p) => p.username))];
const creators = [];
for (const username of handles) {
const { data: p } = await sf('instagram/profile', { username });
if (p.followers_count >= 10_000 && p.followers_count <= 100_000) {
const { followers_count, media_count, bio_links } = p;
creators.push({ username, followers_count, media_count, bio_links });
}
}