Skip to content
For LLMsView as Markdown·

DigitalOcean

Manage droplets, databases, and Kubernetes clusters on DigitalOcean.

DetailValue
CategoryCloud & Infra
Base URLhttps://api.digitalocean.com
AuthenticationBearer Token
Endpoints6
Connector keydigitalocean

Using DigitalOcean in a workflow

  1. Go to Connections and click New Connection.
  2. Pick DigitalOcean 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 — the full list is below.

Available endpoints

EndpointSummary
GET /dropletsList all droplets
POST /dropletsCreate a new droplet
GET /droplets/{droplet_id}Get an existing droplet
DELETE /droplets/{droplet_id}Delete a droplet
GET /databasesList database clusters
GET /kubernetes/clustersList Kubernetes clusters

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /droplets

List all droplets

DetailValue
Operation IDinfra.listDroplets
MethodGET
Path/droplets

Parameters

NameLocationTypeRequired
pagequeryintegerNo
per_pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.listDroplets.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.

POST /droplets

Create a new droplet

DetailValue
Operation IDinfra.createDroplet
MethodPOST
Path/droplets

Parameters

No parameters.

Request Body

FieldType
namestring
regionstring
sizestring
imagestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.createDroplet.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.

GET /droplets/{droplet_id}

Get an existing droplet

DetailValue
Operation IDinfra.getDroplet
MethodGET
Path/droplets/{droplet_id}

Parameters

NameLocationTypeRequired
droplet_idpathintegerYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.getDroplet.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.

DELETE /droplets/{droplet_id}

Delete a droplet

DetailValue
Operation IDinfra.deleteDroplet
MethodDELETE
Path/droplets/{droplet_id}

Parameters

NameLocationTypeRequired
droplet_idpathintegerYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.deleteDroplet.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.

GET /databases

List database clusters

DetailValue
Operation IDinfra.listDatabases
MethodGET
Path/databases

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.listDatabases.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.

GET /kubernetes/clusters

List Kubernetes clusters

DetailValue
Operation IDinfra.listK8sClusters
MethodGET
Path/kubernetes/clusters

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your DigitalOcean connection from the Connection dropdown.
  3. In the Operation dropdown, select infra.listK8sClusters.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DigitalOcean API reference.