--- title: 'AWS S3' description: 'Store, retrieve, and manage objects in Amazon S3 buckets.' --- # AWS S3 Store, retrieve, and manage objects in Amazon S3 buckets. | Detail | Value | |---|---| | Category | Cloud & Infra | | Base URL | `https://s3.amazonaws.com` | | Authentication | API Key | | Endpoints | 8 | | Connector key | `aws-s3` | ## Using AWS S3 in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **AWS S3** 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 /](./get_cloud_listbuckets) | List all buckets | | [GET /{Bucket}](./get_bucket_cloud_listobjectsv2) | List objects in a bucket | | [PUT /{Bucket}](./put_bucket_cloud_createbucket) | Create a new bucket | | [DELETE /{Bucket}](./delete_bucket_cloud_deletebucket) | Delete a bucket | | [GET /{Bucket}/{Key}](./get_bucket_key_cloud_getobject) | Retrieve an object | | [PUT /{Bucket}/{Key}](./put_bucket_key_cloud_putobject) | Upload an object | | [DELETE /{Bucket}/{Key}](./delete_bucket_key_cloud_deleteobject) | Delete an object | | [HEAD /{Bucket}/{Key}](./head_bucket_key_cloud_headobject) | Get object metadata | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.