API Documentation
Build powerful integrations with the CreatorLink API
High Performance
Fast, reliable API with 99.9% uptime guarantee
Secure
OAuth 2.0 authentication and encrypted data transmission
RESTful
Clean, predictable REST API following best practices
Well Documented
Comprehensive documentation with code examples
Getting Started
To use the CreatorLink API, you'll need an API key. You can generate one from your dashboard after signing up.
- Sign up for a CreatorLink account
- Navigate to Settings > API Keys
- Generate a new API key
- Use the key in your API requests
// Using Bearer Token
fetch('https://api.creatorlink.com/v1/creators', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data));Code Example
// Initialize the API client
const creatorLink = new CreatorLinkAPI({
apiKey: 'your_api_key_here',
environment: 'production'
});
// Fetch creators
const creators = await creatorLink.creators.list({
category: 'lifestyle',
minFollowers: 100000,
page: 1,
limit: 20
});
// Get creator details
const creator = await creatorLink.creators.get('creator_id');
// Create a campaign
const campaign = await creatorLink.campaigns.create({
title: 'Summer Fashion Campaign',
description: 'Looking for fashion creators...',
budget: 50000,
requirements: {
minFollowers: 100000,
categories: ['fashion', 'lifestyle']
}
});API Endpoints
GET
/api/creatorsGet a list of all creators
pagelimitcategorymin_followers
GET
/api/creators/:idGet detailed information about a specific creator
id
POST
/api/campaignsCreate a new campaign
titledescriptionbudgetrequirements
GET
/api/campaignsGet all campaigns for your brand
statuspagelimit
POST
/api/partnershipsCreate a partnership request
creator_idcampaign_idmessage
GET
/api/analytics/:campaign_idGet campaign performance analytics
campaign_idstart_dateend_date
Rate Limits
1,000
Requests per hour (Free)
10,000
Requests per hour (Pro)
Unlimited
Requests (Enterprise)
Need Help?
Our developer support team is here to help you integrate the CreatorLink API into your application.