From signup to your first creator search in about a minute.
1. Subscribe
Open Billing and start a Developer plan subscription. The plan includes a monthly credit grant that resets on your billing anniversary.
2. Create an API key
Head to API keys and click Create key. Copy the token from the green banner immediately — only the SHA-256 digest is stored on our side, so we can't show it to you again later.
Treat tokens like passwords
Tokens have full access to your account's API quota. Don't commit them to git. Rotate any key that leaks.
3. Make your first call
Search the creator index for fitness creators with at least 50K followers in the US:
bash
curl "https://developers.tokfluence.com/v1/creators/search?query=fitness&min_followers=50000®ions[]=US" \
-H "Authorization: Bearer $TOKEN"You should get back a JSON payload with up to 20 creators and a meta block describing pagination.
4. Watch your credits
Every response includes an X-Credits-Remaining header. Cache aggressively if you're calling the same endpoints in a loop — credits don't refund on cache misses, only on upstream failures.