Skip to main content
POST
/
api
/
v1
/
projects
/
{projectUuid}
/
sqlQuery
cURL
curl --request POST \
  --url http://api/v1/projects/{projectUuid}/sqlQuery \
  --header 'Content-Type: application/json' \
  --data '
{
  "sql": "<string>"
}
'
{
  "results": {
    "rows": [
      {}
    ],
    "fields": {}
  },
  "status": "ok"
}

Path Parameters

projectUuid
string
required

The uuid of the project to run the query against

Body

application/json

The query to run

sql
string
required

Response

Success

results
object
required
status
enum<string>
required
Available options:
ok