Loading...
Welcome!

Loading...

Create New Client & Get Started

Easily manage and add new clients to your system with just a click.

Autherized Domains
eg: https://bloom-engine.cloud, http://localhost:8080
API Documentation

Below are the cURL requests to interact with the APIs, along with sample responses:

Copy
Request
curl --location 'https://app.bloom-engine.cloud/api/v3.0' \
--header 'Authorization: Bearer your-token' \
--header 'Content-Type: application/json' \
--data '{
    "inputs": {
        "Sheet1!B2": 12, 
        "Sheet1!B3": 250000,
        "Sheet1!B12": "Manitoba",
        "Sheet1!B4": 0.3
    },
    "outputs": [
        "Sheet2!B5",
        "Sheet2!B6",
        "Sheet2!B7",
        "Sheet3!B8",
        "Sheet3!B9",
        "Sheet1!B29:D30"
    ]
  }'
 
Response
{
  "statusCode":0,
  "message":"Success",
  "data":
  {
    "Sheet2!B5":"$ 1,072,000.00",
    "Sheet2!B6":"$ 3,397,367.14",
    "Sheet2!B7":"3.44%",
    "Sheet3!B8":"$ 8",
    "Sheet3!B9":"$ 7.95",
    "Sheet1!B29:D30":["$ 412,622.51","$ 438,055.72"]
  }
}