Social Intel API + Node.js
Search Instagram influencers and get business emails using Node.js. Full setup guide with code examples.
Quick Setup
- Install x402 SDK:
npm install x402-axios - Configure your Base wallet with USDC
- Make requests to
https://socialintel.dev/v1/search - The SDK wraps axios and handles 402 payment flows automatically
Code Example
const response = await fetch(
"https://socialintel.dev/v1/search?" + new URLSearchParams({
query: "travel",
country: "United States",
limit: "20",
})
);
if (response.status === 402) {
const paymentInfo = await response.json();
console.log(`Price: ${paymentInfo.price}`);
console.log("Install: npm install x402-axios");
}
// After x402 payment
const data = await response.json();
data.results.forEach(profile => {
console.log(`${profile.username} - ${profile.public_email || "N/A"}`);
});
What You Get Back
Each search returns up to 100 Instagram profiles with:
- Username — Instagram handle
- Full name — display name
- Followers — follower count
- Category — niche (fitness, beauty, travel, etc.)
- Public email — business email from bio (when available)
- Verified — blue checkmark status
Pricing
$0.10 per search (20 results). Up to 100 results for $0.26. Paid in USDC via x402 protocol — no API keys, no subscription.
Also Available via MCP
Social Intel also offers an MCP (Model Context Protocol) server for AI agent integration:
npx -y social-intel-mcp
The MCP server exposes a search_leads tool that AI agents (Claude, Cursor, etc.) can call directly.
Start Building with Node.js
$0.10/search. No signup. Full Node.js code example above.
View API Docs →