Database
Run Query
POST
/
v1
/
database
/
query
/
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Queries to run. Multiple queries can be separated by semicolons.
Minimum length:
1
Response
200 - application/json
The query UUID.
The query that was run.
The summary of the query results.
The number of rows returned by the query.
A list of strings representing the column names
A list of strings representing the column types
A matrix of the data returned in the form of a Sequence of rows, with each row element being a sequence of column values.
The timestamp when the query started running.
The timestamp when the query finished running.