Skip to main content
GET
/
storage
/
v4
/
object_storages
/
{storage_id}
/
access_keys
/
{access_key}
Get access key
curl --request GET \
  --url https://api.gcore.com/storage/v4/object_storages/{storage_id}/access_keys/{access_key} \
  --header 'Authorization: <api-key>'
{
  "access_key": "AKIAIOSFODNN7EXAMPLE",
  "created_at": "2025-08-05T09:17:02Z"
}

Documentation Index

Fetch the complete documentation index at: https://gcore.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

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

access_key
string
required

Access key to retrieve

Response

AccessKeyV4

access_key
string
required

Access key ID used as the username in S3 authentication. Pass this in the AWS_ACCESS_KEY_ID field of your S3 client configuration.

Example:

"AKIAIOSFODNN7EXAMPLE"

created_at
string<date-time>
required

ISO 8601 timestamp when the access key was created

Example:

"2025-08-05T09:17:02Z"