pydo.ssh_keys.list()
Generated on 17 Apr 2025
from pydo
version
v0.10.0
Description
To list all of the keys in your account, send a GET request to /v2/account/keys
. The response will be a JSON object with a key set to ssh_keys
. The value of this will be an array of ssh_key objects, each of which contains the standard ssh_key attributes.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
per_page |
integer | False | Number of items returned per page | 20 |
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.ssh_keys.list()
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.