Body
application/json
The SQL query to execute.
An array of parameters to be used in the SQL query. Supports primitive types (string, number, boolean, null), arrays, and objects. Use placeholders like $1, $2, etc. in the query string. Examples: ["hello", 123, [1,2,3], {"name": "John", "age": 30}]
Response
The result of the SQL query execution.
An array of results from the query. Each item is an object with the column names as keys.