storage
Serverless postgres database
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.
Count records in a table
Create a record in the database. Optionally include an "id" field otherwise it's set automatically.
Delete a record in the database by id.
Drop a table in the DB
List tables in the DB
Read data from a table. Lookup can be by ID or via querying any field in the record.
Rename a table
Truncate the records in a table
Update a record in the database. Include an "id" in the record to update.
Endpoint | Per Request |
---|---|
Count | Base |
Create | 0.0001 USD |
Delete | Base |
Drop Table | Base |
List Tables | Base |
Read | Base |
Rename Table | Base |
Truncate | Base |
Update | 0.0001 USD |
Base requests are 0.000001 USD
Count Request
Response
{
"count": 31
}