v1

latestOpenAPI 3.0.32026-07-26172157253.6 KB
S3 Access Keys

Create S3 Access Key

Mint a new S3 credential pair usable against the /storage/v1/s3 protocol gateway. The plaintext secretAccessKey in the response is returned exactly once — it is encrypted at rest and can never be retrieved again. If you lose it, revoke and re-create.

Limits:

  • 50 keys per project (hard cap, enforced transactionally).
  • Rate-limited to 20 management requests per 15 min per IP.
post/api/storage/s3/access-keys

Request body

descriptionstring

Optional label to help you identify the key later

Example request

{
  "description": "backup-script"
}

Response

Access key created

Example response

{
  "data": {
    "id": "11111111-1111-1111-1111-111111111111",
    "accessKeyId": "INSFABC123DEF456GH78",
    "description": "backup-script",
    "createdAt": "2026-04-22T00:00:00Z",
    "secretAccessKey": "x7K2-a_pL9qRs4N8vYzWcE1fH5gJ3mUtBoD6ViXk"
  }
}