Skip to main content
GET
/
storage
/
settings
Get storage settings
curl --request GET \
  --url https://api.fal.ai/v1/storage/settings \
  --header 'Authorization: <api-key>'
{
  "expiration_duration_seconds": 86400,
  "initial_acl": {
    "default": "forbid",
    "rules": [
      {
        "user": "my-teammate",
        "decision": "allow"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key must be prefixed with "Key ", e.g. Authorization: Key YOUR_API_KEY

Response

Current storage settings

Account-level storage lifecycle settings

expiration_duration_seconds
integer | null
required

Seconds after which newly uploaded files automatically expire, or null if auto-expiration is disabled

Example:

86400

initial_acl
object
required

Default ACL applied to newly uploaded files, or null if the system default (public) is used