DigitalOcean Spaces

Highly scalable and affordable object storage.

Go to site
Explore
/
Apps
/
DigitalOcean Spaces

DigitalOcean Spaces API Integrations

Build and run workflows using the DigitalOcean Spaces API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { S3 } from "@aws-sdk/client-s3";
import { ListBucketsCommand  } from "@aws-sdk/client-s3";

export default defineComponent({
  props: {
    digitalocean_spaces: {
      type: "app",
      app: "digitalocean_spaces"
    }
  },
  async run({ steps, $ }) {
    console.log(this.digitalocean_spaces.$auth)
    const s3Client = new S3({
        forcePathStyle: false, // Configures to use subdomain/virtual calling format.
        endpoint: `https://${this.digitalocean_spaces.$auth.region}.digitaloceanspaces.com`,
        region: "us-east-1",
        credentials: {
          accessKeyId: this.digitalocean_spaces.$auth.key,
          secretAccessKey: this.digitalocean_spaces.$auth.secret
        }
    });

    const data = await s3Client.send(new ListBucketsCommand({}));
    return data.Buckets;
  },
})

Choose an API to Connect with DigitalOcean Spaces API

1
-
12
of
1000+
apps by most popular

Delete Files with DigitalOcean Spaces API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + DigitalOcean Spaces
 
Try it
Send Message (Advanced) with Discord Webhook API on File Deleted from DigitalOcean Spaces API
DigitalOcean Spaces + Discord Webhook
 
Try it
Delete Files with DigitalOcean Spaces API on New Submission from Typeform API
Typeform + DigitalOcean Spaces
 
Try it
Delete Files with DigitalOcean Spaces API on Custom Events from Zoom API
Zoom + DigitalOcean Spaces
 
Try it
Get Film with SWAPI - Star Wars API on File Deleted from DigitalOcean Spaces API
DigitalOcean Spaces + SWAPI - Star Wars
 
Try it
File Deleted from the DigitalOcean Spaces API

Emit new event when a file is deleted from a DigitalOcean Spaces bucket

 
Try it
New File Uploaded from the DigitalOcean Spaces API

Emit new event when a file is uploaded to a DigitalOcean Spaces bucket

 
Try it
Delete Files with the DigitalOcean Spaces API

Delete files in a bucket. See the docs.

 
Try it
List Files with the DigitalOcean Spaces API

List files in a bucket. See the docs.

 
Try it
Upload File /tmp with the DigitalOcean Spaces API

Accepts a file path starting from /tmp, then uploads as a file to DigitalOcean Spaces. See the docs.

 
Try it
Upload File Base64 with the DigitalOcean Spaces API

Accepts a base64-encoded string and a filename, then uploads as a file to DigitalOcean Spaces. See the docs.

 
Try it
Upload File URL with the DigitalOcean Spaces API

Accepts a download link and a filename, downloads it, then uploads to DigitalOcean Spaces. See the docs.

 
Try it

Authentication

DigitalOcean Spaces uses API keys for authentication. When you connect your DigitalOcean Spaces account, Pipedream securely stores the keys so you can easily authenticate to DigitalOcean Spaces APIs in both code and no-code steps.

To retrieve your Access Keys,

  • Navigate to your DigitalOcean Spaces account and sign in
  • Go to “API”
  • Scroll down to “Spaces access keys”

To see available regions for Spaces, go to Other product availability table within the Digital Ocean's Regional Availability Matrix.