A lightweight API for storing data without managing a backend.
Like LocalStorage but persistent, secure, and accessible across devices. Perfect for indie devs, static pages, prototypes and hobby apps.
Create your users' accounts and logins, store their preferences - all with no backend. No databases to create and maintain.
You get unlimited egress, users, and bandwidth. No surprise fees like compute charges or per-byte data transfer costs.
Each project is protected by an isolated API Key, built-in RLS, and full end-to-end encryption.
Your users, your apps - your data. All managed data can be backed up and exported.
Data stored with prefs.us is persistent, survives device data wipes, and handles device switching.
No account to create. No sign-ups. Hands-off approach to storing data with a on-the-fly generated secure API key.
βit's like LocalStorage - but better! My static pages now have a database backend!β
βPerfect for my side projects. I didn't want to run a database just to store a few settings.β
βI use it for prototypes, demos, and hackathons. Simple API and super reliable.β
.key("settings").write(settings);
.key("settings").read( (response) => {
settings = response.value;
});
.list("signups").add("email");
.list("signups").read( (response) => {
emails = response.values;
});
.setItem("user", data);
.getItem("user", (response)=>{
data = response.value;
});
.bucket("name")
.key("name")
.put_object(data);
.bucket("name")
.key("name")
.get_object( (response) => {
obj = response.value;
});
.key("myObj")
.write(JSON.stringify(obj));
.key("myObj")
.read( (response) => {
obj = JSON.parse(response.value);
});
A simple dashboard helps you manage your API keys. You can review stored data, monitor data ingress and egress, and other metrics.
Unlimited users
50 MB Storage
No data egress charges
100k requests / API key / month
Create Account
10 GB Storage
Unlimited reads/writes
No compute or data charges
Email support
Sign Up
Faster uplink
25 GB Storage
Unlimited bandwidth
Email support
Sign Up
Stop worrying about databases for your side projects.