--- name: social-intel description: | Bulk Instagram influencer discovery by demographics, niche, location, and engagement. Returns up to 100 profiles per search: username, followers, bio, email (when public). Dynamic pricing: $0.10 for ≤20 results, $0.16 for 50, $0.26 for 100. Formula: $0.10 + max(0, limit-20) × $0.002. Payment via x402 (USDC on Base or Solana). No API keys needed. TRIGGERS: find influencers, instagram leads, social media prospecting, influencer outreach, find fitness influencers, search instagram accounts, influencer discovery, instagram data, social data lookup, brand ambassador search homepage: https://socialintel.dev docs: https://socialintel.dev/docs openapi: https://socialintel.dev/openapi.json --- # Social Intel — Instagram Lead Search Find Instagram influencers at scale. Filter by niche, location, follower count, gender, and more. No subscriptions, no API keys required. Accepts USDC on Base (EVM) or Solana via x402. ## Endpoint ``` GET https://socialintel.dev/v1/search ``` **Dynamic Pricing:** $0.10 for ≤20 results, +$0.002/result above 20. - 20 results = $0.10 | 50 results = $0.16 | 100 results = $0.26 - Formula: `price = $0.10 + max(0, limit - 20) × $0.002` ## Parameters | Name | Type | Description | |------|------|-------------| | query | string | Keyword search by name or bio content (e.g. "yoga teacher NYC") | | category | string | Business niche (e.g. "Fitness", "Beauty", "Tech", "Food", "Travel") | | country | string | Country — ISO code (US, UK, DE) or full name (United States, Germany) | | gender | string | "male" or "female" | | min_followers | integer | Minimum follower count (0 - 1,000,000,000) | | max_followers | integer | Maximum follower count (for micro-influencer discovery) | | limit | integer | Max results to return (1-100, default 20) | ## Example Request (with agentcash) ```python # AgentCash fetch -- handles x402 payment automatically result = await fetch("https://socialintel.dev/v1/search?category=Fitness&country=US&limit=10") ``` ## Combined Filter Example ```python # Find micro-influencers in the UK with emails result = await fetch("https://socialintel.dev/v1/search?query=AI&country=UK&max_followers=100000&limit=50") # Price: $0.16 (50 results) ``` ## Example Response ```json { "results": [ { "username": "fitnessguru", "full_name": "Alex Fitness", "followers": 150000, "following": 900, "category": "Fitness", "bio": "Personal trainer | Online coaching | NYC", "public_email": "alex@fitnessguru.com", "is_verified": false, "is_business": true } ], "count": 1 } ``` ## Search Strategies - By niche: ?category=Beauty&country=US -- finds beauty influencers in the US - By keyword: ?query=yoga+teacher+NYC -- finds accounts matching the query - With filters: ?category=Fitness&gender=female&min_followers=10000 -- female fitness influencers with 10k+ followers - Micro-influencers: ?category=Tech&max_followers=100000 -- tech accounts under 100k followers - Email harvest: use category search -- business accounts often have public_email ## Payment (x402) This endpoint uses the x402 protocol. AgentCash handles this automatically: 1. First request returns 402 Payment Required with payment details 2. AgentCash pays $0.10 USDC on Base or Solana 3. Retry with payment-signature header -- get results Seller wallets: - Base (EVM): 0xB1Acd9E0269023546074400A434e703B646AaBBa - Solana: Fj2MVB43hefNzf2XtJp9wGYqS6zHyLzewZ2Vbo4EmBvV