runninghub-api
    runninghub-api
    • Instructions for Use
    • About nodeInfoList
    • About Enterprise ComfyUI API
    • Native ComfyUI API Integration Guide
    • Start ComfyUI Task 1 - Basic
      POST
    • Start ComfyUI Task 2 - Advanced
      POST
    • Start AI App Task
      POST
    • Get Workflow JSON
      POST
    • Check Task Status
      POST
    • Check Task Output
      POST
    • Cancel ComfyUI Task
      POST
    • Get Account Information
      POST
    • Upload Resource(image\video\audio)
      POST
    • Upload Lora
      POST
    • Get Webhook Event Details
      POST
    • Resend Specific Webhook Event
      POST

      Get Account Information

      POST
      /uc/openapi/accountStatus

      Request

      Authorization
      Header Params
      Host
      string 
      required
      Example:
      www.runninghub.ai
      Body Params application/json
      apikey
      string 
      optional
      Example:
      {{apiKey}}
      Example
      {
          "apikey": "{{apiKey}}"
      }

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://www.runninghub.ai/uc/openapi/accountStatus' \
      --header 'Host: www.runninghub.ai' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "apikey": "Please enter your own apiKey and keep it safe."
      }'

      Responses

      🟢200成功
      application/json
      Body
      code
      integer 
      optional
      返回标记:成功标记=0,非0失败,或者是功能码
      msg
      string 
      optional
      返回信息
      data
      object (AccountStatusResponse) 
      optional
      数据
      remainCoins
      integer 
      optional
      currentTaskCounts
      integer 
      optional
      Example
      {
          "code": 0,
          "msg": "success",
          "data": {
              "remainCoins": "177814",
              "currentTaskCounts": "0",
              "remainMoney": null,
              "currency": null,
              "apiType": "NORMAL"
          }
      }
      Modified at 2025-03-26 11:21:02
      Previous
      Cancel ComfyUI Task
      Next
      Upload Resource(image\video\audio)
      Built with