Estimate your fair market value based on engagement and niche.
Lifestyle / General (1.0x)
Finance / Business (1.5x)
Tech / Software (1.4x)
Health / Fitness (1.2x)
Entertainment / Comedy (0.9x)
Fashion / Beauty (1.3x)
Single Static Post
Instagram/TikTok Story
Reel / Short Video
Long-form YouTube Video
Carousel / Multi-post
Suggested Rate Range
*This is an estimate. Rates may vary based on usage rights and exclusivity.
How to Use the Influencer Rate Card Calculator
Determining how much to charge for a brand collaboration is one of the biggest challenges for creators. This calculator uses industry-standard benchmarks—often referred to as the "$10 per 1,000 followers" rule—and adjusts it for modern engagement metrics and content complexity.
Key Factors That Influence Your Rate
Engagement Rate: A creator with 10,000 followers and a 5% engagement rate is often more valuable to a brand than a creator with 50,000 followers and a 0.5% engagement rate. Higher engagement justifies a premium fee.
The Niche Premium: High-intent niches like Finance, SaaS, and Healthcare often command higher rates because the audience is more valuable and harder to reach than broad entertainment audiences.
Content Production: A 15-second Story requires less equipment and editing than a highly produced 60-second Reel or a 10-minute YouTube video. The calculator applies multipliers to account for this effort.
Influencer Pricing Tiers
Industry standards generally categorize influencers into the following tiers, which our calculator incorporates into its logic:
Nano-Influencers (1k–10k followers): Often charge $50–$250 per post.
Micro-Influencers (10k–50k followers): Often charge $250–$1,000 per post.
Mid-Tier (50k–500k followers): Often charge $1,000–$5,000 per post.
Macro (500k–1M followers): Often charge $5,000–$10,000+ per post.
Negotiation Tips for Creators
Don't treat the calculated number as a ceiling. If a brand asks for "Whitelisting" (running ads through your account) or "Exclusivity" (preventing you from working with competitors), you should increase your base rate by 30% to 100%. Always provide your media kit alongside these figures to demonstrate the quality of your work.
function calculateInfluencerRate() {
var followers = parseFloat(document.getElementById('followerCount').value);
var engagement = parseFloat(document.getElementById('engagementRate').value);
var niche = parseFloat(document.getElementById('nicheFactor').value);
var content = parseFloat(document.getElementById('contentType').value);
var resultDiv = document.getElementById('rate-result');
var priceDisplay = document.getElementById('final-price');
if (isNaN(followers) || followers <= 0) {
alert("Please enter a valid follower count.");
return;
}
if (isNaN(engagement) || engagement 3) {
engagementMultiplier = 1 + ((engagement – 3) * 0.05);
} else if (engagement < 1) {
engagementMultiplier = 0.8;
}
// Calculate Total
var calculatedRate = baseRate * engagementMultiplier * niche * content;
// Define a range (±15%)
var lowRange = calculatedRate * 0.85;
var highRange = calculatedRate * 1.15;
// Formatting
function formatCurrency(num) {
return "$" + num.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
priceDisplay.innerHTML = formatCurrency(lowRange) + " – " + formatCurrency(highRange);
resultDiv.style.display = "block";
// Smooth scroll to result
resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}