Skip to main content
Stop an instance.

Signature

VastAI.stop_instance(id: int) -> str

Parameters

id
int
required
id

Returns

str — Result from the API call.

Example

from vastai import VastAI

client = VastAI(api_key="YOUR_API_KEY")
result = client.stop_instance(id=12345)
print(result)