Skip to main content
PUT
/
api
/
v0
/
instances
/
{id}
/
ssh
Update instance ssh keys
curl --request PUT \
  --url https://console.vast.ai/api/v0/instances/{id}/ssh/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "instance_id": "<string>",
  "ssh_key_id": "<string>",
  "ssh_key": "<string>"
}
'
{
  "success": true,
  "msg": "Operation completed successfully"
}

Documentation Index

Fetch the complete documentation index at: https://vastai-80aa3a82-auto-openapi-preview-pr-4175.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

The id

Body

application/json
id
string

The id

instance_id
string

The instance id

ssh_key_id
string

The ssh key id

ssh_key
string

The ssh key

Response

Successful response

success
boolean
Example:

true

msg
string
Example:

"Operation completed successfully"