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

CRM

Endpoints related to CRM functionalities.

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

New Influencer Click

Request

Increases the number of tracked clicks on an influencer's deal page.

Bodyapplication/jsonrequired
influencer_handlestring

Influencer handle.

Example: "therock"
deal_idstring

Deal ID or URL. Either deal_id or influencer_handle is required.

Example: "ETUNQ6ZTW1"
collab_idstring

Collaboration ID (optional)

Example: "V2KYU6F9"
brand_idinteger

Brand ID (optional)

Example: 4819
increase_clicksintegerrequired

Number of clicks to add. Defaults to 0.

Example: 10
country_codestring

Country code for click origin.

Example: "US"
curl -i -X POST \
  https://api.influencer-hero.com/v1/crm/new_influencer_click \
  -H 'Content-Type: application/json' \
  -d '{
    "influencer_handle": "therock",
    "deal_id": "ETUNQ6ZTW1",
    "collab_id": "V2KYU6F9",
    "brand_id": 4819,
    "increase_clicks": 10,
    "country_code": "US"
  }'

Responses

Clicks successfully added.

Bodyapplication/json
Response
application/json
{ "deal_id": "ETUNQ6ZTW1", "collab_id": "V2KYU6F9", "new_clicks_value": 150, "message": "Clicks successfully added." }

New Influencer Referral

Request

Adds a new order/referral to an influencer's affiliate performance.

Bodyapplication/jsonrequired
influencer_handlestring

Influencer handle.

Example: "therock"
deal_idstringrequired

Deal ID or URL. Either deal_id or influencer_handle is required.

Example: "ETUNQ6ZTW1"
collab_idstring

Collaboration ID (optional).

Example: "V2KYU6F9"
brand_idinteger

Brand ID (optional).

Example: 4819
order_idstringrequired

Order ID.

Example: "891237123"
order_revenuenumberrequired

Revenue of the order.

Example: 150.5
order_platformstring

Platform of the order.

Example: "shopify"
order_discount_codes_usedstring

Discount codes used.

Example: "DISCOUNT50"
order_notesstring

Notes about the order.

Example: "High-value customer."
curl -i -X POST \
  https://api.influencer-hero.com/v1/crm/new_influencer_referral \
  -H 'Content-Type: application/json' \
  -d '{
    "influencer_handle": "therock",
    "deal_id": "ETUNQ6ZTW1",
    "collab_id": "V2KYU6F9",
    "brand_id": 4819,
    "order_id": "891237123",
    "order_revenue": 150.5,
    "order_platform": "shopify",
    "order_discount_codes_used": "DISCOUNT50",
    "order_notes": "High-value customer."
  }'

Responses

Order successfully added.

Bodyapplication/json
Response
application/json
{ "deal_id": "ETUNQ6ZTW1", "collab_id": "V2KYU6F9", "message": "Order successfully added." }

Account

Account-related functionalities for dealflow and brand searching.

Operations

webhooks

Webhooks