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.

  1. Sign up for a CreatorLink account
  2. Navigate to Settings > API Keys
  3. Generate a new API key
  4. 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/creators

Get a list of all creators

pagelimitcategorymin_followers
GET/api/creators/:id

Get detailed information about a specific creator

id
POST/api/campaigns

Create a new campaign

titledescriptionbudgetrequirements
GET/api/campaigns

Get all campaigns for your brand

statuspagelimit
POST/api/partnerships

Create a partnership request

creator_idcampaign_idmessage
GET/api/analytics/:campaign_id

Get 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.