The Database is the API.

A lightweight, distributed NoSQL database built in Rust. No complex query languages—just high-performance, native REST endpoints for your data.

# Create a new document in the 'users' collection

curl -X POST https://api.dewdb.io/v1/users \

-H "Content-Type: application/json" \

-d '{"name": "Alice", "role": "admin"}'


// Output: 201 Created

{"id": "dw_8y2k1", "status": "indexed"}

Rust Powered

Built with the safety and speed of Rust. Zero garbage collection and ultra-low latency for every request.

Distributed Architecture

Scale horizontally by adding nodes. DewDB handles data replication and partitioning natively.

Zero-Query Lang

Forget learning proprietary syntax. Standard HTTP methods (GET, POST, DELETE) are all you need.