pydo.apps.list()
Generated on 12 Jun 2025
from pydo
version
v0.11.0
Description
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.
Parameters
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. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
get_resp = client.apps.list()
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.