Skip to main content
PUT
/
api
/
v0
/
instances
/
bid_price
/
{id}
change bid
curl --request PUT \
  --url https://console.vast.ai/api/v0/instances/bid_price/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_id": "me",
  "price": 0.17
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://vastai-80aa3a82-fix-google-validation-docs-404s.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Path Parameters

id
integer
required

Instance ID

Body

application/json
client_id
string
required

Client identifier (usually "me")

Example:

"me"

price
number
required

Bid price in $/hour

Required range: 0.001 <= x <= 32
Example:

0.17

Response

Success response

success
boolean
Example:

true