storage

Database

Serverless postgres database

Introduction

Our Database service is an easy to use serverless postgres database which provides persistent storage via a CRUD interface. It includes feature rich querying and JSON based formatted records for native use in Node.js and or any language.

Features

Count

Count records in a table

Create

Create a record in the database. Optionally include an "id" field otherwise it's set automatically.

Delete

Delete a record in the database by id.

Drop Table

Drop a table in the DB

List Tables

List tables in the DB

Read

Read data from a table. Lookup can be by ID or via querying any field in the record.

Rename Table

Rename a table

Truncate

Truncate the records in a table

Update

Update a record in the database. Include an "id" in the record to update.

Pricing

EndpointPer Request
CountBase
Create0.0001 USD
DeleteBase
Drop TableBase
List TablesBase
ReadBase
Rename TableBase
TruncateBase
Update0.0001 USD

Base requests are 0.000001 USD

Example

Count Request

Response

{
    "count": 31
}