Edit GigaSPOT orders
POST
https://api.clore.ai/v1/edit_gigaspot_ordersOverclocking
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
Success(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success_to_update_ids
array[integer]
required
failed_to_update_ids
array[string]
required
code
integer
required
Example
Success
{
"success_to_update_ids": [
547224
],
"failed_to_update_ids": [],
"code": 0
}
Last modified: 7 days ago