--- title: 'Heroku' description: 'Manage apps, dynos, config vars, and releases with the Heroku Platform API.' --- # Heroku Manage apps, dynos, config vars, and releases with the Heroku Platform API. | Detail | Value | |---|---| | Category | Cloud & Infra | | Base URL | `https://api.heroku.com` | | Authentication | Bearer Token | | Endpoints | 8 | | Connector key | `heroku` | ## Using Heroku in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Heroku** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /apps](./get_apps_cloud_listapps) | List apps | | [POST /apps](./post_apps_cloud_createapp) | Create an app | | [GET /apps/{app_id_or_name}](./get_apps_app_id_or_name_cloud_getapp) | Get app details | | [DELETE /apps/{app_id_or_name}](./delete_apps_app_id_or_name_cloud_deleteapp) | Delete an app | | [GET /apps/{app_id_or_name}/dynos](./get_apps_app_id_or_name_dynos_cloud_listdynos) | List dynos | | [PATCH /apps/{app_id_or_name}/formation/{formation_id_or_type}](./patch_apps_app_id_or_name_formation_formation_id_or_type_cloud_updateformation) | Scale dynos | | [GET /apps/{app_id_or_name}/config-vars](./get_apps_app_id_or_name_config_vars_cloud_listconfigvars) | List config vars | | [GET /apps/{app_id_or_name}/releases](./get_apps_app_id_or_name_releases_cloud_listreleases) | List releases | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.