Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Blaze (v4)
  • Ultipa Powerhouse (v5)

Standalone

learn more about the four main severs in the architecture of Ultipa Powerhouse (v5) , click

here

Please complete this required field.

Please complete this required field.

Please complete this required field.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Please complete this required field.

Mac addresses of all servers, separated by line break or comma.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Maximum Shard Services
Maximum Total Cores for Shard Service
Maximum HDC Services
Maximum Total Cores for HDC Service
Applied Validity Period(days)
Effective Date
Expired Date
Mac Address
Reason for Application
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

v5.2
Search
    English
    v5.2

      OpenAPI

      OpenAPI lets you control your Ultipa Cloud instances directly, without needing to log in to the Ultipa Cloud dashboard.

      API Overview

      Base URL

      The base URL of OpenAPI for Graph Powerhouse and Graph Blaze instances is:

      https://cloud.ultipa.com/open/dbaas/v1/cluster/
      

      The base URL of OpenAPI for Manager instances is:

      https://cloud.ultipa.com/open/dbaas/v1/manager/
      

      API Keys

      API keys are required to authenticate API requests.

      Go to Accounts > API Keys in Ultipa Cloud to create or manage your keys. When creating a key, be sure to download and store it securely for future use.

      Each API request must include an API key in the request header, using the key name api_key.

      List Instances

      HTTP Request

      To list Graph Powerhouse and Graph Blaze instances, submit a GET request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/cluster/list
      

      To list Manager instances, submit a GET request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/manager/list
      

      Request Header

      Key
      Type
      Default
      Required
      Description
      api_key String / Yes Your Ultipa Cloud API key.

      Request Parameters

      Parameter
      Type
      Default
      Required
      Description
      page Integer 1 No The page number in the response body.
      size Integer 20 No The number of items displayed per page in the response body.
      instanceStateFilter Integer 1 No Filter for cluster status:
      • 1: My Instances
      • 2: Active Instances
      • 3: Stopped Instances
      • 4: Terminated Instances
      directions String desc No Sorting order of elements in the response body: desc or asc.
      sorts String created_at No Field for sorting elements in the response body.

      Request Example

      GET https://cloud.ultipa.com/open/dbaas/v1/cluster/list??page=1&size=20&instanceStateFilter=1&directions=desc&sorts=created_at&componentType=GRAPH_V5`
      Authorization: Bearer api_key:{Your Ultipa Cloud API key}
      Accept: application/json
      

      Response Example

      {
          "code": 200,
          "message": "success",
          "data": {
              "page": 1,
              "size": 20,
              "totalPages": 1,
              "totalElements": 2,
              "list": [
                  {
                      "clusterId": "ultipa-abc123",
                      "clusterState": "STOPPING",
                      "name": "test2",
                      "instanceList": [
                          {
                              "name": "xxxxxxxx_NAME_SERVER-1",
                              "instanceState": "STOPPING",
                              "type": "Name server"
                          },
                          {
                              "name": "xxxxxxxx_META_SERVER-1",
                              "instanceState": "STOPPING",
                              "type": "Meta server"
                          },
                          {
                              "name": "xxxxxxxx_SHARD_SERVER-1-1",
                              "instanceState": "STOPPING",
                              "type": "Shard server"
                          }
                      ]
                  },
                  {
                      "clusterId": "ultipa-abc456",
                      "clusterState": "STOPPING",
                      "name": "Graph Powerhouse 0",
                      "instanceList": [
                          {
                              "name": "xxxxxxxxxxxx_NAME_SERVER-1",
                              "instanceState": "STOPPING",
                              "type": "Name server"
                          },
                          {
                              "name": "xxxxxxxxxxxx_META_SERVER-1",
                              "instanceState": "STOPPING",
                              "type": "Meta server"
                          },
                          {
                              "name": "xxxxxxxxxxxx_SHARD_SERVER-1-1",
                              "instanceState": "STOPPING",
                              "type": "Shard server"
                          }
                      ]
                  }
              ]
          }
      }
      

      View Instance State

      HTTP Request

      To view the state of Graph Powerhouse and Graph Blaze instances, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/cluster/state
      

      To view the state of Manager instances, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/manager/state
      

      Request Header

      Key
      Type
      Default
      Required
      Description
      api_key String / Yes Your Ultipa Cloud API key.

      Request Body

      {
          "clusterIds": ["ultipa-abc123", "ultipa-abc456"]
      }
      
      Key
      Type
      Default
      Required
      Description
      clusterIds or managerIds Array / Yes The IDs of the instances.

      Request Example

      POST https://cloud.ultipa.com/open/dbaas/v1/cluster/state
      Authorization: Bearer api_key:{Your Ultipa Cloud API key}
      Content-Type: application/json
      
      {
        "clusterIds": [
          "ultipa-abc123",
          "ultipa-abc456"
        ]
      }
      

      Response Example

      {
          "code": 200,
          "message": "success",
          "data": [
              {
                  "clusterId": "ultipa-abc123",
                  "clusterState": "STOPPING",
                  "name": "test2",
                  "instanceList": [
                      {
                          "name": "xxxxxxxxxxxxxxxxx_NAME_SERVER-1",
                          "instanceState": "STOPPING",
                          "type": "Name server"
                      },
                      {
                          "name": "xxxxxxxxxxxxxxxxx_META_SERVER-1",
                          "instanceState": "STOPPING",
                          "type": "Meta server"
                      },
                      {
                          "name": "xxxxxxxxxxxxxxxxxs_SHARD_SERVER-1-1",
                          "instanceState": "STOPPING",
                          "type": "Shard server"
                      }
                  ]
              },
              {
                  "clusterId": "ultipa-abc456",
                  "clusterState": "STOPPING",
                  "name": "Graph Powerhouse 0",
                  "instanceList": [
                      {
                          "name": "xxxxxxxxxxxxxyyyyyy_NAME_SERVER-1",
                          "instanceState": "STOPPING",
                          "type": "Name server"
                      },
                      {
                          "name": "xxxxxxxxxxxxxyyyyyy_META_SERVER-1",
                          "instanceState": "STOPPING",
                          "type": "Meta server"
                      },
                      {
                          "name": "xxxxxxxxxxxxxyyyyyy_SHARD_SERVER-1-1",
                          "instanceState": "STOPPING",
                          "type": "Shard server"
                      }
                  ]
              }
          ]
      }
      

      Start an Instance

      HTTP Request

      To start a Graph Powerhouse or Graph Blaze instance, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/cluster/start
      

      To start a Manager instance, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/manager/start
      

      Request Header

      Key
      Type
      Default
      Required
      Description
      api_key String / Yes Your Ultipa Cloud API key.

      Request Body

      {
          "clusterId": "ultipa-abc123"
      }
      
      Key
      Type
      Default
      Required
      Description
      clusterId or managerId String / Yes The ID of the instance.

      Request Example

      POST https://cloud.ultipa.com/open/dbaas/v1/cluster/start
      Authorization: Bearer api_key:{Your Ultipa Cloud API key}
      Content-Type: application/json
      
      {
          "clusterId": "ultipa-abc123"
      }
      

      Response Example

      {
          "code": 200,
          "message": "success",
          "data": null
      }
      

      Stop a Cluster

      HTTP Request

      To stop a Graph Powerhouse or Graph Blaze instance, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/cluster/stop
      

      To stop a Manager instance, submit a POST request to the following endpoint:

      https://cloud.ultipa.com/open/dbaas/v1/manager/stop
      

      Request Header

      Key
      Type
      Default
      Required
      Description
      api_key String / Yes Your Ultipa Cloud API key.

      Request Body

      {
          "clusterId": "ultipa-abc123"
      }
      
      Key
      Type
      Default
      Required
      Description
      clusterId or managerId String / Yes The ID of the instance.

      Request Example

      POST https://cloud.ultipa.com/open/dbaas/v1/cluster/stop
      Authorization: Bearer api_key:{Your Ultipa Cloud API key}
      Content-Type: application/json
      
      {
          "clusterId": "ultipa-abc123"
      }
      

      Response Example

      {
          "code": 200,
          "message": "success",
          "data": null
      }
      

      Response Error Codes

      Code
      Message
      Description
      403 Forbidden The given API key does not have permission to perform the request.
      405 Operation not allowed The current state of the instance does not allow the request.
      408 Login to this account is banned. If you have any questions, please email [email protected] Your account has been banned.
      409 The account has been canceled Your account has been canceled.
      1301 Unable to verify identity You did not provide an API key in the request, or the key is null.
      1302 Key is invalid or has been revoked The API key does not exist or is invalid.
      1303 Key requests are frequent, please try again later. The number of requests has exceeded the API request limit.
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      Privacy Policy
      Please agree to continue.

      Copyright © 2019-2025 Ultipa Inc. – All Rights Reserved   |  Security   |  Legal Notices   |  Web Use Notices