> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get bucket CORS

> Learn to retrieve bucket CORS settings in Telnyx Cloud Storage using AWS S3 API with example command output.

# GetBucketCors

## Example GetBucketCors request

```bash theme={null}
user@host % aws s3api get-bucket-cors --bucket my_bucket
{
    "CORSRules": [
        {
            "AllowedHeaders": [
                "*"
            ],
            "AllowedMethods": [
                "PUT",
                "DELETE",
                "POST"
            ],
            "AllowedOrigins": [
                "http://www.example.com"
            ]
        },
        {
            "AllowedMethods": [
                "GET"
            ],
            "AllowedOrigins": [
                "*"
            ]
        }
    ]
}
```
