API documentation for the Influencer Hero platform.
Influencer Hero API (1.4.2)
Download OpenAPI description
Overview
URL
Influencer Hero Support
Languages
Servers
https://api.influencer-hero.com/
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
- https://api.influencer-hero.com/v1/account/search_dealflows
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.influencer-hero.com/v1/account/search_dealflows \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
[ { "id": "D_FSSI4P", "name": "Dealflow 1" }, { "id": "67890", "name": "Dealflow 2" } ]
- https://api.influencer-hero.com/v1/account/search_brands
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.influencer-hero.com/v1/account/search_brands \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
[ { "id": 4819, "name": "Brand A" }, { "id": 6789, "name": "Brand B" } ]
- https://api.influencer-hero.com/v1/crm/autocomplete
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.influencer-hero.com/v1/crm/autocomplete?q=therock&return_detailed_results=true' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "results": [ { … }, { … } ], "pagination": { "more": false } }