Skip to main content
GET
/
storage
/
provisioning
/
v3
/
storages
/
s3_compatible
/
{storage_id}
Get S3-compatible storage
curl --request GET \
  --url https://api.gcore.com/storage/provisioning/v3/storages/s3_compatible/{storage_id} \
  --header 'Authorization: <api-key>'
{
  "address": "s-ed1.cloud.gcore.lu",
  "created_at": "2025-08-05 09:17:02.095832+00:00",
  "credentials": [
    {
      "access_key": "AKIAIOSFODNN7EXAMPLE",
      "secret_key": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
    }
  ],
  "id": 1,
  "location_name": "s-ed1",
  "name": "my-storage-prod",
  "provisioning_status": "ok"
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

storage_id
integer<int64>
required

Storage ID

Response

S3StorageResV3

S3StorageResV3 response for S3 storage V3

address
string
required

Full hostname/address for accessing the storage endpoint

Example:

"s-ed1.cloud.gcore.lu"

created_at
string
required

ISO 8601 timestamp when the storage was created

Example:

"2025-08-05 09:17:02.095832+00:00"

credentials
object[]
required

S3 access credentials

id
integer<int64>
required

Unique identifier for the storage instance

Example:

1

location_name
string
required

Geographic location code where the storage is provisioned

Example:

"s-ed1"

name
string
required

User-defined name for the storage instance

Example:

"my-storage-prod"

provisioning_status
enum<string>
required

Current provisioning status of the storage instance

Available options:
creating,
ok,
updating,
deleting,
deleted
Example:

"ok"