WamSQLite

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