Calculate what you need to charge to survive and thrive in New York City.
Minimum Hourly Rate Required:
How to Determine Your Hourly Rate in New York City
Setting an hourly rate in NYC is significantly different than in most other American cities. Between the "NYC resident income tax," high commercial and residential rents, and the steep cost of health insurance, your gross income must be substantially higher than your desired "pocket money."
This calculator accounts for the four pillars of NYC freelance and contract finance:
The NYC Tax Burden: New York City residents pay a local income tax on top of Federal and State taxes. If you are a freelancer, you also face the Self-Employment tax (FICA).
NYC Cost of Living: Rent in boroughs like Manhattan or Brooklyn often exceeds 40% of a professional's budget.
Non-Billable Time: You cannot bill 40 hours a week. Admin, pitching, and NYC transit time eat into your productivity.
Overhead: NYC health insurance rates and co-working space memberships are among the highest in the country.
Typical NYC Professional Benchmarks
Role
Junior Rate
Senior Rate
Graphic Designer
$45 – $65
$100 – $175
Software Developer
$75 – $110
$150 – $300
Copywriter
$50 – $80
$125 – $250
Marketing Consultant
$60 – $90
$150 – $350
Calculated Example: Freelance Producer in Queens
Let's look at a realistic scenario for a mid-level producer living in Astoria:
Desired Net: $75,000 (To cover lifestyle and savings).
Rent: $2,400/mo ($28,800 annually).
Tax Rate: 35% (Federal + NY State + NYC + Self-employment).
Hours: 30 billable hours per week, 47 weeks per year.
In this scenario, to keep $75k after rent and taxes, the professional must gross approximately $170,000, requiring an hourly rate of roughly $120.00.
function calculateNYCRate() {
var desiredNet = parseFloat(document.getElementById('desiredNetSalary').value) || 0;
var rent = parseFloat(document.getElementById('nycMonthlyRent').value) || 0;
var overhead = parseFloat(document.getElementById('businessExpenses').value) || 0;
var taxRate = parseFloat(document.getElementById('taxRate').value) || 0;
var weeks = parseFloat(document.getElementById('billableWeeks').value) || 0;
var hours = parseFloat(document.getElementById('hoursPerWeek').value) || 0;
// 1. Calculate total annual cash needed (Net Income + Rent + Business Expenses)
var totalAnnualRent = rent * 12;
var totalPostTaxNeeded = desiredNet + totalAnnualRent + overhead;
// 2. Adjust for taxes to find required Gross Income
// Formula: Gross = Net / (1 – TaxRate)
var taxDecimal = taxRate / 100;
var requiredGross = 0;
if (taxDecimal 0) {
hourlyRate = requiredGross / totalHours;
}
// Display results
var resultArea = document.getElementById('nyc-result-area');
var hourlyOutput = document.getElementById('hourlyRateOutput');
var breakdownOutput = document.getElementById('breakdownOutput');
if (hourlyRate > 0 && isFinite(hourlyRate)) {
resultArea.style.display = 'block';
hourlyOutput.innerText = '$' + hourlyRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ' / hr';
breakdownOutput.innerHTML = 'To meet your goals, you need a gross annual revenue of $' +
requiredGross.toLocaleString(undefined, {maximumFractionDigits: 0}) +
'. This covers your NYC taxes, $' +
totalAnnualRent.toLocaleString() + ' in annual housing, and your business costs.';
} else {
alert('Please enter valid numbers for hours and weeks.');
}
}