API ReferencePlatformSqliteAPI reference for Sqlite endpoints. 6 endpointsPOST/api/v1/dbCreate a new SQLite database. Each database is persistent and queryable via SQL.GET/api/v1/dbList all your SQLite databases.POST/api/v1/db/queryExecute a SQL query against a SQLite database. Supports SELECT, INSERT, UPDATE, DELETE, CREATE TABLE, and other SQL statements. Use parameterized queries with ? placeholders for safety.GET/api/v1/db/{name}Get schema information for a database including tables, columns, and row counts.DELETE/api/v1/db/{name}Permanently delete a SQLite database and all its data.GET/api/v1/db/{name}/exportExport a SQLite database as a downloadable SQL dump file.CodeAPI reference for Code endpoints.Browser VisitAPI reference for Browser Visit endpoints.