Documentation
WamSQLite is a hosted SQLite platform. Create a database, run SQL against it from a browser console, and query it from any language over a simple REST API — all backed by a real SQLite file.
How it fits together
Three concepts cover almost everything you'll do:
- Database — a single SQLite file WamSQLite creates and stores for you, identified by a UUID.
- API token — a bearer token scoped to exactly one database, with either read-only or read-write access.
- Statement — one SQL statement. The REST API executes a batch of statements per request and returns one result per statement.
Where to start
- Quickstart — create a database and run your first query, end to end.
- Authentication — how tokens and abilities work.
- REST API reference — every endpoint, request, and response shape.
- Client examples — curl, JavaScript, PHP, and Python.