Skip to main content
POST
/
data
Execute Query
curl --request POST \
  --url https://api.example.com/data/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>"
}
'
[
  {}
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Api-key
string | null

Body

application/json
query
string
required

The SELECT SQL query to fetch the data.

Response

Successful Response