Learn about using the Firebolt API to interact with Firebolt.
Property | Data type | Description |
---|---|---|
client_id | TEXT | The service account ID. |
client_secret | TEXT | The service account secret. |
access_token
is a unique token that authorizes your API requests that acts as a temporary key to access resources or perform actions. You can use this token to authenticate with Firebolt’s platform until it expires.token_type
is Bearer
, which means that the access token must be included in an authorization header of your API requests using the format: Authorization: Bearer <access_token>
.expires_in
indicates the number of seconds until the token expires.<account name>
.
https://api.app.firebolt.io/web/v3/account/my-account/engineUrl
Response
Property | Data type | Description |
---|---|---|
system engine URL | TEXT | The system engine URL (retrieved here) |
SQL query | TEXT | Any valid SQL query |
(optional) database name | TEXT | The database name |
information_schema.engines
table:
Property | Data type | Description |
---|---|---|
user engine URL | TEXT | The user engine URL (retrieved here) |
database name | TEXT | The database to run the query |
SQL query | TEXT | Any valid SQL query |