v1

latestOpenAPI 3.1.0MIT2026-07-17116965.4 KB
Utils

Perform SQL requests

Run a query in SQL format. Expects a query string passed through body parameter and optional raw_response parameter that defines a format of response. raw_response can be set to False for Select queries only, e.g., SELECT * FROM mytable The query string must stay as it is, no URL encoding is needed. The response object depends on the query executed. In select mode the response has same format as /search operation.

post/sql

Query parameters

raw_responseboolean

Optional parameter, defines a format of response. Can be set to False for Select only queries and set to True for any type of queries. Default value is 'True'.

Response

In case of SELECT-only in mode none the response schema is the same as of search. In case of mode=raw or raw_response=true the response depends on the query executed.

object[] required
OR