Influencers

The Influencers API allows you to retrieve influencers profiles on the Cloutfit platform.

Get all influencers

requires authentication

You will get a list of all the influencers that are active in your account. You can also include the posts for each influencer but the payload will be quite big.

GETapi/v1/influencers

Headers

Query Parameters

string
optional

Include posts to get the posts for the influencers example: include=posts

Example

curl --request GET \
    --get "https://app.cloutfit.ai/api/v1/influencers?include=posts" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"

Get an influencer

requires authentication

Retrieves the details of a specific influencer. You need to supply the unique influencer identifier.

GETapi/v1/influencers/{id}

Path Parameters

string
required

The ID of the influencer to retrieve

Headers

Query Parameters

string
optional

Include related resources, e.g., posts

Example

curl --request GET \
    --get "https://app.cloutfit.ai/api/v1/influencers/1?include=posts" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"

Available Endpoints

GET/api/v1/influencers

Get all influencers

GET/api/v1/influencers/{id}

Get a specific influencer