Procurements
Create procurement
Create a procurement. A procurement tries to continuously buy small blocks of compute over and over again. Advantage being that you might be able to get a cheaper price than a longer term reservation. Disadvantage being that you can never be sure if you're nodes will spin up and down as market prices fluctuate.
post/v0/procurements
Request body
Example request
{
"instance_type": "h100i",
"desired_quantity": 5,
"buy_limit_price_per_gpu_hour": 250,
"sell_limit_price_per_gpu_hour": 25,
"horizon": 60,
"colocation_strategy": {
"cluster_name": "richmond"
}
}Response
Successfully created procurement
Example response
{
"object": "procurement",
"id": "proc_W9TRG",
"instance_type": "h100i",
"desired_quantity": 1,
"buy_limit_price_per_gpu_hour": 250,
"sell_limit_price_per_gpu_hour": 25,
"horizon": 60,
"colocation_strategy": {
"cluster_name": "richmond"
}
}