PUT
/
api
/
v0
/
machines
/
{machine_id}
/
minbid
set min-bid
curl --request PUT \
  --url https://console.vast.ai/api/v0/machines/{machine_id}/minbid \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "price": 0.5
}'
{
  "success": true,
  "you_sent": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

machine_id
integer
required

The ID of the machine.

Body

application/json
price
number
required

Minimum bid price for the machine.

Example:

0.5

Response

Success response

success
boolean
Example:

true

you_sent
object

The original request JSON.