| Metric | Fiber AI | Influencers Club |
|---|---|---|
| Category | People Search | People Search |
| Pricing | Pay-as-you-go | Subscription |
| Auth | API Key | API Key |
| Format | JSON | JSON |
| Bot Blocking | None | None |
| OpenAPI Spec | Yes | No |
| Credit Card | Not required | Not required |
| Rate Limit | Per-endpoint limits (429 on exceed); 2x limits on Growth plan, custom on Enterprise | Plan-dependent; contact support for specific limits. Community reports suggest ~5 req/sec throughput. |
| Score Component | Fiber AI | Influencers Club |
|---|---|---|
| Base | +50 | +50 |
| OpenAPI Spec | +15 (Yes) | 0 (No) |
| Auth | +10 (API Key) | +10 (API Key) |
| Format | +10 (JSON) | +10 (JSON) |
| Bot Blocking | +10 (None) | +10 (None) |
| No CC | +5 (Yes) | +5 (Yes) |
| Free | 0 (No) | 0 (No) |
| Total | 100 | 85 |
| Fiber AI | Influencers Club | |
|---|---|---|
| Pros |
|
|
| Cons |
|
|
| Badges | OpenAPI SpecAPI KeyPay-as-you-goJSONBot Blocking: NoneNo CCpeople-searchcompany-searchcontact-enrichmentemail-finderlinkedinmcpagentic-search | API KeySubscriptionJSONBot Blocking: NoneNo CCcreator-discoveryinfluencer-marketingdata-enrichmentinstagramyoutubetiktoktwittertwitchsocial-mediaemail-finder |
Fiber AI Integration
example.py
import osfrom fiberai import Clientfrom fiberai.api.search import people_searchfrom fiberai.models import PeopleSearchBody
client = Client(base_url="https://api.fiber.ai")body = PeopleSearchBody.from_dict({ "apiKey": os.environ["FIBERAI_API_KEY"], "searchParams": { "title": ["CTO", "VP Engineering"], "seniority": ["Executive"], "location": {"countries": ["USA"]} }, "pageSize": 10})response = people_search.sync(client=client, body=body)Influencers Club Integration
example.py
import requests
headers = { "x-api-key": "YOUR_API_KEY", "Content-Type": "application/json"}
# Enrich a creator by emailresp = requests.post( "https://api.influencers.club/v1/enrich/email", headers=headers, json={"email": "[email protected]"})profile = resp.json()print(profile)