Skip to content

Influencer Hero API (1.4.2)

API documentation for the Influencer Hero platform.

Download OpenAPI description
Languages
Servers
https://api.influencer-hero.com/

Test endpoints

Endpoints to test authenticated and public requests

Operations
Operations
Operations
Operations
Operations
Operations

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

Request

Retrieves all dealflows in the user's account.

Security
ApiKeyAuth
curl -i -X GET \
  https://api.influencer-hero.com/v1/account/search_dealflows \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Success response

Bodyapplication/json
Response
application/json
[ { "id": "D_FSSI4P", "name": "Dealflow 1" }, { "id": "67890", "name": "Dealflow 2" } ]

Request

Searches for brands in the platform account.

Security
ApiKeyAuth
curl -i -X GET \
  https://api.influencer-hero.com/v1/account/search_brands \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Success response

Bodyapplication/json
Response
application/json
[ { "id": 4819, "name": "Brand A" }, { "id": 6789, "name": "Brand B" } ]

Request

Searches for influencers in your CRM by name or handle. Returns matching deals that can be used for navigation or further operations.

Security
ApiKeyAuth
Query
qstringrequired

Search term (must be more than 2 characters).

Example: q=therock
return_detailed_resultsboolean

If true, returns detailed deal information instead of basic results.

Example: return_detailed_results=true
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'

Responses

Search results returned successfully.

Bodyapplication/json
Response
application/json
{ "results": [ {}, {} ], "pagination": { "more": false } }
Operations

Webhooks

Receive real-time notifications when events occur in your account. Webhooks are secured via HMAC-SHA256 signatures.

Webhooks