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 | Credits | Quotas |
---|---|---|
Count | Base | None |
Create | Base | 1000000 |
Delete | Base | 1000000 |
Drop Table | Base | None |
List Tables | Base | None |
Read | Base | 1000000 |
Rename Table | Base | None |
Truncate | Base | None |
Update | Base | 1000000 |
Base request price is 0.000001 credits per request
Count Request
Response
{
"count": 31
}