Skip to main content
Dashboard

Overview

Account summary and Bounce statistics.


Configs

Quick Start: Using your Bounce Key

Routing your requests through Bounce is simple. Instead of calling your API directly from the frontend, replace the base URL with the Bounce proxy. We'll transparently inject your secret API key and protect your backend from abuse.

frontend-integration.js
// Instead of calling your API directly (exposing your secret key):
fetch("https://api.tosses.dev/v1/credentials", { method: "POST", body: { key: "SECRET_KEY", expiry_ttl: 1800 } });

// Route through Bounce to auto-inject your secret key:
const BOUNCE_KEY = "your_key_here";
const BOUNCE_URL = `https://fetch.tosses.dev/${BOUNCE_KEY}/v1/credentials`;

fetch(BOUNCE_URL, { method: "POST", body: { expiry_ttl: 1800 } }); // No 'key' needed

Shop

Select a plan to be taken to Stripe checkout.

Free
$0

Requests10k / mo
Bounce keys3
Rate limit30 req/min
Egress0.5 GB / mo
Pro
$5 / month

Requests500k / mo
Bounce keys10
Rate limit60 req/min
Egress50 GB / mo
Team
$25 / month

Requests5M / mo
Bounce keysUnlimited
Rate limit180 req/min
Egress250 GB / mo

Need a custom plan? Contact us for enterprise pricing.

Settings

Manage your account, notifications, and session.

Requests Cap Alert

Receive an email when your remaining requests drops below this threshold. Set to 0 to disable.

GB Cap Alert

Receive an email when your remaining GB drops below this threshold. Set to 0 to disable.

Saved Keys

Bounce keys saved on this device (encrypted). You can delete them at any time.

Sign Out

End your current session. You can sign back in at any time with your email.

Delete Account

Your account and configurations will be completely wiped. A verification code will be sent to confirm.