API documentation for the Influencer Hero platform.
- Identify Influencers by Email (async)
Identify Influencer by Email (real-time)
Identify Influencers by E...
Influencer Hero API (1.4.2)
Download OpenAPI description
Overview
URL
Influencer Hero Support
Languages
Servers
https://api.influencer-hero.com/
Request
Identifies influencers based on email addresses. This can be used e.g. to identify influencers from your customer lists. This endpoint is asynchronous and will return a success message immediately. The influencers will be processed in the background and will appear in the "Your customers" tab of the influencer finder after a few minutes.
Security
ApiKeyAuth
List of email addresses.
Example: ["influencer1@example.com","influencer2@example.com"]
ID of the brand. If not provided, the first brand in the account will be used.
Example: 4819
- https://api.influencer-hero.com/v1/search/identify_influencers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/search/identify_influencers \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"influencer_list": [
"influencer1@example.com",
"influencer2@example.com"
],
"brand_id": 4819,
"source_type": "sendinblue"
}'Response
application/json
{ "message": "Successfully sent contact details to queue. Please allow for up to an hour for the system to process the data" }
- https://api.influencer-hero.com/v1/search/identify_influencers_real_time
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.influencer-hero.com/v1/search/identify_influencers_real_time?brand_id=4810&influencer_email=influencer%40example.com' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "is_influencer": true, "type": "instagram", "user_id": "308206489", "url": "https://www.instagram.com/therock/", "username": "therock", "fullname": "Dwayne Johnson", "picture": "https://example.com/profile.jpg", "followers": 1347, "is_verified": false }
Affiliate Tracking
[Advanced] Server-side endpoints for tracking affiliate actions and performance. For most use cases, the client-side tracking script will be sufficient.
Operations