Clore GigaSPOT
    Clore GigaSPOT
    • GET Market
      GET
    • Create GigaSPOT orders
      POST
    • Edit GigaSPOT orders
      POST
    • Cancel Many Orders
      POST

      Edit GigaSPOT orders

      POST
      https://api.clore.ai/v1/edit_gigaspot_orders

      Overclocking#

      It's recommend to pass all OC parameters: pl, core_lock, mem_lock, mem_offset, core_offset Otherwise their configured value can't be guaranteed.
      ⚠️ Core Offset, Mem Offset is in real MHz, which means you should input 50% of value you will input in HiveOS or nVidia linux driver. You wanna input the value you will input to MSI afterburner on windows

      Request

      Header Params
      Content-Type
      string 
      required
      Example:
      application/json
      auth
      string 
      required
      clore.ai api token
      Example:
      NXj2bHUXHwzvd5-Lm6UfvgGtnNwaHxLu
      Body Params application/json
      array of:
      order_id
      integer 
      required
      Order ID
      price
      number 
      required
      Price in CLORE/day
      oc
      array [object {5}] 
      required
      Overclock settings (use object for each GPU)
      pl
      integer 
      required
      Power Limit (W)
      core_lock
      integer 
      optional
      GPU Core Lock (MHz)
      mem_lock
      integer 
      optional
      GPU Memory Lock (MHz)
      core_offset
      integer 
      optional
      GPU Memory Offset (MHz)
      mem_offset
      integer 
      optional
      GPU Core Offset (MHz)
      Example
      [
          {
              "order_id": 547224,
              "price": 50.675,
              "oc":  [
                  {
                      "pl": 70,
                      "core_lock": 900,
                      "mem_lock": 5000,
                      "core_offset": 0,
                      "mem_offset": -200
                  },
                  {
                      "pl": 70
                  },
                  {
                      "pl": 85
                  },
                  {
                      "pl": 70
                  },
                  {
                      "pl": 70
                  },
                  {
                      "pl": 70,
                      "core_offset": -450
                  },
                  {
                      "pl": 70
                  },
                  {
                      "pl": 70
                  }
              ]
          }
      ]

      Responses

      🟢200Success
      application/json
      Body
      success_to_update_ids
      array[integer]
      required
      IDs of orders, that got successfully updated
      failed_to_update_ids
      array[integer]
      required
      IDs of orders, that could not be updated for any reason
      too_low_bid_ids
      array[integer]
      required
      IDs of orders, that could not be updated, because of the bid price being lower than "min_bid" in latest gigaspot snapshot
      code
      integer 
      required
      clore.ai status code
      Examples
      {
          "success_to_update_ids": [
              547224
          ],
          "failed_to_update_ids": [],
          "too_low_bid_ids": [],
          "code": 0
      }
      🟠401Unauthorized
      Modified at 2025-01-01 23:31:06
      Previous
      Create GigaSPOT orders
      Next
      Cancel Many Orders
      Built with