POST
/
v1
/
database
/
query

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

query
string
required

Queries to run. Multiple queries can be separated by semicolons.

Minimum length: 1

Response

200 - application/json
column_names
string[]
required

A list of strings representing the column names

column_types
string[]
required

A list of strings representing the column types

end_timestamp
number
required

The timestamp when the query finished running.

query
string
required

The query that was run.

query_id
string
required

The query UUID.

result_rows
array
required

A matrix of the data returned in the form of a Sequence of rows, with each row element being a sequence of column values.

row_count
integer
required

The number of rows returned by the query.

start_timestamp
number
required

The timestamp when the query started running.

summary
object
required

The summary of the query results.