csvbase is a simple website for sharing table data. Join the discord.
And what can you do with it?
csvbase has a REST API.
Each table URL doubles as an API endpoint.
GET retrieves the tableAccept header to determine the formatPUT creates a new table at /<your-username>/<some-table-name>DELETE deletes the tablePOST appends new rowsAuthentication isn't required for all requests but is required:
PUT, DELETE or POSTUse HTTP basic auth to provide your username and API key.
csvbase_row_id and id collationAll csvbase tables contain a column (which is added automatically if not
present) named csvbase_row_id.
This column contains autoincremented, unique integers that are used to refer to specific rows both from outside of csvbase and internally.
If this a value in this row is null, a new, unique row id will be generated.