Delete an SSH key from your account.
Signature
VastAI.delete_ssh_key(id: int) -> str
Parameters
ID of the SSH key to delete.
Returns
str — Result from the API call.
Example
from vastai import VastAI
client = VastAI(api_key="YOUR_API_KEY")
result = client.delete_ssh_key(id=12345)
print(result)