List all apps on your account. Information about the current active deployment as well as any in progress ones will also be included for each app.
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
per_page |
integer | False | Number of items returned per page | 20 |
with_projects |
boolean | False | Whether the project_id of listed apps should be fetched and included. |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
get_resp = client.apps.list()
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.