Skip to main content
POST
Python

Body

application/json
query
string
required

The SQL query to execute.

params
(string | number | boolean | enum<string> | null | any[] | object)[]

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.

rows
required

An array of results from the query. Each item is an object with the column names as keys.