Firebolt website screenshot

Firebolt

Firebolt is a cloud data warehouse with elastic engines and consumption-based pricing. It exposes a REST API for issuing SQL queries and managing engines/databases, plus language SDKs (Python, Node.js, Java, .NET) and an OAuth service-account flow.

1 APIs 0 Features
Data WarehouseCloudSQLAnalytics

APIs

Firebolt REST API

The Firebolt REST API issues SQL queries against running engines and manages account, engine, and database resources. Authentication is OAuth 2.0 client_credentials against `htt...

Collections

Pricing Plans

Firebolt Plans Pricing

3 plans

PLANS

Rate Limits

Firebolt Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🌐
Portal
Portal
💰
Pricing
Pricing
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Firebolt REST API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Obtain an access token (OAuth 2.0 client credentials)
    type: http
  http:
    method: POST
    url: https://api.app.firebolt.io/oauth/token
    body:
      type: json
      data: '{}'
  docs: Obtain an access token (OAuth 2.0 client credentials)
- info:
    name: Get system engine URL for an account
    type: http
  http:
    method: GET
    url: https://api.app.firebolt.io/web/v3/account/:account_name/engineUrl
    params:
    - name: account_name
      value: ''
      type: path
  docs: Get system engine URL for an account
- info:
    name: Execute SQL on the system or user engine (plain-text body)
    type: http
  http:
    method: POST
    url: https://api.app.firebolt.io/
    params:
    - name: database
      value: ''
      type: query
    - name: output_format
      value: ''
      type: query
  docs: Submit a SQL statement as plain text. Send this request to the engine URL returned by /web/v3/account/{account_name}/engineUrl.
    Use the `database` query parameter when targeting a user engine.
- info:
    name: Query information_schema on the system engine
    type: http
  http:
    method: POST
    url: https://api.app.firebolt.io/query
  docs: Query information_schema on the system engine
bundled: true