Skip to main content

Query by SQL Enpoint

Overview

The Query by SQL API allows you to retrieve processed entries from an application using SQL. The application is identified by its :app_id. You can use standard SQL SELECT queries to access data across all sources within the specified app.

Endpoint

POST https://api.myboardtoday.com/app/:app_id/query

Path Parameters

ParameterTypeRequiredDescription
app_idUUIDYesThe unique identifier of the application

Headers

HeaderRequiredDescription
x-api-keyYesAPI key used for authentication

Request Body

The request body must be a JSON object containing the following field:

FieldTypeRequiredDescription
querystringYesThe SQL query to execute. Use standard SQL syntax with the SELECT clause.

Example Request

{
"query": "SELECT `name`, `email` FROM `user_data` WHERE `status` = 'active'"
}

Response

The response returns the query result as a JSON array of objects, where each object represents a row of data.

Example Response

[
{
"name": "Alice Johnson",
"email": "alice@example.com"
},
{
"name": "Bob Smith",
"email": "bob@example.com"
}
]

Report Bugs, Request New Features, and Win $50 Every Month

We value your precious feedback. Please contact us when you find a bug or would like to request a new feature. (In the main panel, click on the bob logo on the top left corner, then in the Dropdown menu click on “contact for bugs or new features”). Every month we will select an “opinion leader” and reward him/her with $50 in cash.