Skip to main content
POST
/
storage
/
provisioning
/
v3
/
storages
/
s3_compatible
Create S3-compatible storage
curl --request POST \
  --url https://api.gcore.com/storage/provisioning/v3/storages/s3_compatible \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "location_name": "s-ed1",
  "name": "my-storage-prod"
}
'
{
  "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

Body

application/json
location_name
string
required

Location code where the storage should be created

Example:

"s-ed1"

name
string
required

User-defined name for the storage instance

Example:

"my-storage-prod"

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"