Skip to main content
Bounty offers flexible pricing plans powered by Autumn billing. Choose the plan that fits your team’s needs.

Pricing Tiers

Free

$0/monthFor individuals getting started
  • 1 concurrent bounty
  • 5% platform fee
  • No fee-free allowance
  • Community support

Basic

**10/month(10/month** (100/year)For developers and small teams
  • Unlimited concurrent bounties
  • 4% platform fee
  • $500/mo fee-free allowance
  • Email support

Pro

**25/month(25/month** (250/year)For growing teams
  • Unlimited concurrent bounties
  • 3% platform fee
  • $5,000/mo fee-free allowance
  • Priority support
  • Most Popular

Pro+

**150/month(150/month** (1,500/year)For scaling organizations
  • Unlimited concurrent bounties
  • 2% platform fee
  • $50,000/mo fee-free allowance
  • Dedicated support
  • Custom integrations
Annual plans save 2 months (pay for 10 months, get 12 months).

Plan Features

Concurrent Bounties

The number of bounties you can have open simultaneously:
  • Free: 1 concurrent bounty
  • Basic, Pro, Pro+: Unlimited concurrent bounties
Once a bounty is completed or cancelled, it no longer counts toward your concurrent limit.

Platform Fees

Platform fees are charged on bounty payouts over your fee-free allowance:
PlanPlatform FeeFee-Free Allowance
Free5%$0/mo
Basic4%$500/mo
Pro3%$5,000/mo
Pro+2%$50,000/mo

How Fee-Free Allowance Works

Your fee-free allowance resets monthly. Bounties paid out within this allowance have no platform fees. Example (Pro Plan):
// Month spending: $7,000 in bounty payouts
const feeFreeAllowance = 5000; // $5,000/mo for Pro
const platformFeePercent = 0.03; // 3% for Pro

// First $5,000: No fees
const feeFreeAmount = 5000;

// Next $2,000: 3% fee
const chargeableAmount = 7000 - 5000; // $2,000
const platformFee = chargeableAmount * platformFeePercent; // $60

// Total fees for the month: $60
Platform fees are charged to the organization creating bounties, not to contributors receiving payouts.

Billing with Autumn

Bounty uses Autumn for subscription billing and usage tracking.

Subscription Management

// Check current subscription
const { data: customer } = useCustomer();

console.log(customer.subscriptions); // Active subscriptions
console.log(customer.features); // Feature usage and limits

Feature Tracking

Autumn tracks your feature usage in real-time:
  • Concurrent Bounties: Monitored continuously
  • Monthly Spend: Resets on your billing cycle date

Changing Plans

You can upgrade or downgrade your plan at any time from Settings → Billing:
  1. Navigate to your organization settings
  2. Click Billing tab
  3. Select Change Plan
  4. Choose your new plan
  5. Confirm change
When downgrading, your new limits apply immediately. If you exceed concurrent bounty limits, you’ll need to complete or cancel bounties before creating new ones.

Checkout Flow

When subscribing to a paid plan:
1

Select Plan

Choose your plan from the pricing page
2

Authenticate

Sign in or create your account
3

Payment Details

Enter payment information via Stripe Checkout
4

Confirmation

Your subscription activates immediately

Payment Methods

Autumn + Stripe support:
  • Credit cards (Visa, Mastercard, Amex)
  • Debit cards
  • Link by Stripe
  • ACH direct debit (US only)

Usage Monitoring

Track your usage in Settings → Billing:
  • Concurrent bounties: Current vs limit
  • Monthly spend: Spend toward fee-free allowance
  • Platform fees: Fees charged this billing period
  • Next billing date: When your subscription renews

FAQs

On the Free plan, you can only create 1 bounty at a time. You must complete or cancel your current bounty before creating another.Paid plans have unlimited concurrent bounties.
Platform fees are charged to the organization creating the bounty, not to contributors. Contributors always receive the full bounty amount.
Yes. You can cancel your subscription from Settings → Billing. Your plan remains active until the end of your current billing period.
Subscriptions are not prorated. If you cancel, you retain access to paid features until your billing period ends.
Existing bounties remain active. However, if you exceed the new concurrent bounty limit, you cannot create new bounties until some complete or are cancelled.

API Access

Programmatically check billing status:
// Check subscription and limits via Autumn API
const response = await fetch('/api/billing/status', {
  headers: {
    'Authorization': `Bearer ${token}`
  }
});

const billing = await response.json();

console.log(billing.plan); // Current plan slug
console.log(billing.features.concurrentBounties); // Limit and usage
console.log(billing.monthlySpend); // Current month spending

Next Steps

View Pricing

Compare plans and subscribe

Payments Guide

Learn about bounty payments

Stripe Integration

Configure Stripe Connect

Organizations

Manage team billing

Build docs developers (and LLMs) love