> For the complete documentation index, see [llms.txt](https://docs.libnova.com/libsafe-advanced-manual/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.libnova.com/libsafe-advanced-manual/cookbook/getting-your-s3-bucket-name.md).

# Getting your S3 bucket name

Depending on the region and other settings, LIBSAFE Advanced keeps your data container inside a particular S3 Bucket. All data containers in your instance may use the same S3 bucket or not.

To obtain the **Bucket Name** associated to the data container you want to use, follow this process:

## Using the LIBSAFE Advanced Management Interface <a href="#using-the-libsafe-go-management-interface" id="using-the-libsafe-go-management-interface"></a>

Go to the container you would like to upload to in the Management Interface and get the **bucket name** in the **Storage** section.

![](https://gblobscdn.gitbook.com/assets%2F-MVFE6MnOK93sACDCxxx%2F-MayOQwvZ5b1BMasRxmk%2F-Mayn25bEAxDF8VVYG8I%2Fimage.png?alt=media\&token=61133051-4e50-49b9-9f01-23afe6cbb31c)

## Using the API <a href="#using-the-api" id="using-the-api"></a>

Alternatively, you can get the same information with the following method:

```
$ curl --request GET \
      --url "$your_platform_url/api/container/{your container id}" \
      --header "authorization: Bearer $your_platform_api_key"
```

and locate the bucket name:

![](https://gblobscdn.gitbook.com/assets%2F-MVFE6MnOK93sACDCxxx%2F-MayOQwvZ5b1BMasRxmk%2F-MayoH3IeW2t9t1iDBJe%2Fimage.png?alt=media\&token=16aa56f5-c314-482e-8eb4-1c9e3f8f719f)

The path for every file in the container is formed with:

```
s3://{S3 bucket name}/{container id}/{path to your file}
```

For example:

```
s3://LIBSAFE Advanced-acme/5/myfile.txt
```

​
