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/create_webhook
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.influencer-hero.com/v1/account/create_webhook \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"webhook_url": "https://example.com/webhook",
"webhook_type": "new_influencer_reply"
}'Response
application/json
{ "message": "Successfully created webhook." }
- https://api.influencer-hero.com/v1/account/get_webhooks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.influencer-hero.com/v1/account/get_webhooks \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Response
application/json
{ "webhooks": [ { … }, { … } ] }
- https://api.influencer-hero.com/v1/account/delete_webhook
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://api.influencer-hero.com/v1/account/delete_webhook \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"webhook_url": "https://example.com/webhook",
"webhook_type": "new_influencer_reply"
}'Response
application/json
{ "message": "Successfully deleted webhook." }