Learn how to authenticate your API requests to access Cloutfit's resources.
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".
All authenticated endpoints are marked with a
You can retrieve your token in your dashboard in Tokens.
Cloutfit's Social Match feature allows you to connect social media accounts to your API requests for enhanced functionality.
When using Social Match, you'll need to include additional parameters in your requests to specify which social media platform you're targeting.
All API requests are encrypted and authenticated using industry-standard protocols.
Generate and manage multiple API keys for different applications or environments.
API requests are rate-limited based on your subscription plan to ensure fair usage.
You can manage your API tokens through the Cloutfit dashboard. Each token has specific permissions and can be revoked at any time.
We recommend using different tokens for development and production environments to maintain security.
curl --request GET \
--url "https://app.cloutfit.ai/api/v1/influencers" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"{
"error": {
"code": "authentication_required",
"message": "Authentication is required to access this resource.",
"status": 401
}
}{
"error": {
"code": "invalid_token",
"message": "The provided API token is invalid or has expired.",
"status": 401
}
}{
"error": {
"code": "insufficient_permissions",
"message": "Your API token does not have permission to access this resource.",
"status": 403
}
}