Sign In / Sign Up
Overview
Account summary and Bounce statistics.
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.
// 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.
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.