
How to Find Yoga Influencers Programmatically (API + Python)
Building a yoga app and need to find the right Instagram creators to partner with? Here's how I do it without scraping or API key bureaucracy. The Problem With Finding Yoga Influencers Most influencer discovery tools are built for marketers: annual contracts, minimum spend, CSV exports, manual review. If you're a developer building a feature that needs influencer data — say, a partnership recommendation engine or a creator discovery widget — none of that fits your workflow. I needed a pay-per-query approach. Here's what I'm using. One API Call import httpx response = httpx . get ( " https://api.socialintel.dev/v1/search " , params = { " query " : " yoga instructor " , " country " : " United States " , " gender " : " woman " , " followers_min " : 5000 , " followers_max " : 500000 , " limit " : 20 } ) data = response . json () for creator in data . get ( " results " , []): print ( f " { creator [ ' username ' ] } — { creator [ ' followers ' ] : , } followers " ) The endpoint returns real
Continue reading on Dev.to Python
Opens in a new tab


![[Learning notes and hw] getting started with R-cnn: Manually implementing Intersection over Union (IoU)](/_next/image?url=https%3A%2F%2Fmedia2.dev.to%2Fdynamic%2Fimage%2Fwidth%3D800%252Cheight%3D%252Cfit%3Dscale-down%252Cgravity%3Dauto%252Cformat%3Dauto%2Fhttps%253A%252F%252Fdev-to-uploads.s3.amazonaws.com%252Fuploads%252Farticles%252Favit2emoxc0g68e5ltqj.jpg&w=1200&q=75)