The Cloutfit API provides seamless access to our AI-powered e-commerce tools designed to help online retailers enhance their customer experience and boost conversions. This comprehensive API enables developers to integrate our innovative product matching directly into their platforms.
Base URL: https://app.cloutfit.ai/
This documentation provides everything you need to integrate our AI-powered e-commerce solutions into your platform. With Cloutfit's API, you can harness the power of influencer product matching.
As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile). You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).
Whether you're building a new feature, enhancing your existing platform, or creating a custom integration, our comprehensive guides and interactive examples will help you implement Cloutfit's technology quickly and efficiently. Our API is designed to be intuitive for developers while delivering powerful AI capabilities that drive conversions and engage customers. Let's get started building the future of e-commerce together.
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
You can retrieve your token in your dashboard in Tokens.
curl https://app.cloutfit.ai/v1/influencers \
-H "Authorization: Bearer YOUR_API_KEY"All API requests should be made to the following base URL:
https://app.cloutfit.ai/v1/Cloutfit uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided, and codes in the 5xx range indicate an error with Cloutfit's servers.
All error responses include a JSON object with an error message to help you understand what went wrong.
{
"error": {
"code": "authentication_required",
"message": "Authentication is required to access this resource.",
"status": 401
}
}curl https://app.cloutfit.ai/v1/influencers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"