# Getting your S3 bucket name

Depending on the region and other settings, LIBSAFE Go 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 Go 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 Go-acme/5/myfile.txt
```

​


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.libnova.com/libsafe-go/cookbook/getting-your-s3-bucket-name.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
