Credits & Pricing

Rove uses a credit-based billing system. 1 credit = 1 API action.

Free Tier

Every new account gets 100 free credits. No credit card required. Test keys (rvp_test_) never consume credits.

Founder Packs

One-time purchase. Credits never expire.

PackPriceCreditsPer-credit cost
Solo$995,000$0.020
Builder$19910,000$0.020
Agency$34925,000$0.014

Credit Top-ups

Buy more credits anytime from the dashboard billing page.

BundlePriceCredits
Small$121,000
Medium$495,000
Large$8910,000

What Costs Credits

ActionCreditsNotes
Create session1Per session initialization
navigate1Per page navigation
click / fill / select / scroll1Per interaction
get_a11y_tree1Per extraction
screenshot (in session)1Per capture
Standalone screenshot2Includes ephemeral session
Structured extraction3Session + navigation + extraction
wait_for0Free
close_session0Free
GET /usage0Free
GET /artifacts0Free

What Doesn't Cost Credits

  • Test keys (rvp_test_) — authenticate normally but never deduct credits. Use for development and CI.
  • Read-only endpoints — usage stats, artifact retrieval, key listing.
  • Wait actionswait_for is free because it doesn't generate new browser state.

Typical Costs

WorkflowActionsCreditsCost at Builder rate
Navigate + get a11y tree33$0.06
Fill a login form + verify66$0.12
Scrape 10 product pages2222$0.44
Full checkout flow (5 pages)1515$0.30

Credit Expiry

Credits from Founder Packs never expire. They're valid for the lifetime of the current API version (v1).

Monitoring Usage

Check your balance anytime:

curl https://rove-api.fly.dev/v1/account/usage \
  -H "Authorization: Bearer rvp_live_YOUR_KEY"

Or visit the dashboard to see usage charts and credit burn rate.

What Happens at Zero

When your credit balance hits zero, the API returns a clear error:

{
  "type": "https://api.roveapi.com/errors/insufficient-credits",
  "title": "Insufficient credits",
  "status": 402,
  "detail": "Not enough credits for requested operation."
}

No surprise charges. No silent degradation. Buy more credits or switch to a test key.