docs/rest/sql.mdx
This API provides a REST endpoint for executing the SQL queries. Note:
application/json request body.query which has the SQL statement value.String that contains the SQL query that needs to be executed.
</ParamField> <ParamField body='response_format' type='string'>Format of the response. Available options:
null (default) - returns all data in a single JSON response"sse" - returns data as Server-Sent Events stream"jsonlines" - returns data as JSON Lines stream (one JSON object per line)Use "sse" or "jsonlines" for streaming large result sets to avoid loading all data into memory at once.
Optional context object, e.g., {"db": "mindsdb"} to specify the database.
Optional parameters for parameterized queries, e.g., {"name": "value"}.
A list with the column names returned
</ResponseField> <ResponseField name="context" type="object" required>The database where the query is executed
</ResponseField> <ResponseField name="data" type="array">The actual data returned by the query in case of the table response type </ResponseField>
<ResponseField name="type" type="string">The type of the response table | error | ok </ResponseField>
<RequestExample>curl --request POST \
--url https://cloud.mindsdb.com/api/sql/query \
--header 'Content-Type: application/json' \
--data '
{
"query": "SELECT * FROM example_db.demo_data.home_rentals LIMIT 10;"
}
'
curl --request POST \
--url https://cloud.mindsdb.com/api/sql/query \
--header 'Content-Type: application/json' \
--data '
{
"query": "SELECT * FROM example_db.demo_data.home_rentals;",
"response_format": "sse"
}
'
curl --request POST \
--url https://cloud.mindsdb.com/api/sql/query \
--header 'Content-Type: application/json' \
--data '
{
"query": "SELECT * FROM example_db.demo_data.home_rentals;",
"response_format": "jsonlines"
}
'
import requests
url = 'https://cloud.mindsdb.com/api/sql/query'
resp = requests.post(url, json={'query':
'SELECT * FROM example_db.demo_data.home_rentals LIMIT 10;'})
{
"column_names": [
"sqft",
"rental_price"
],
"context": {
"db": "mindsdb"
},
"data": [
[
917,
3901
],
[
194,
2042
]
],
"type": "table"
}
data: {"type": "table", "column_names": ["sqft", "rental_price"], "context": {"db": "mindsdb"}}
data: [[917, 3901], [194, 2042]]
data: [[543, 1871], [289, 1563]]
{"type": "table", "column_names": ["sqft", "rental_price"], "context": {"db": "mindsdb"}}
[[917, 3901], [194, 2042]]
[[543, 1871], [289, 1563]]