GET
/
api
/
v1
/
files
/
signed-url
curl --request GET \
  --url https://api.apexxcloud.com/api/v1/files/signed-url \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Signature: <api-key>' \
  --header 'X-Timestamp: <api-key>'
{
  "data": {
    "url": "https://cdn.apexxcloud.com/f/abc123/example.jpg?signature=xyz789",
    "expires_in": 3600,
    "is_public": false
  }
}

Authorizations

X-Access-Key
string
header
required

Your API Access Key

X-Signature
string
header
required

HMAC SHA-256 signature of the request

X-Timestamp
string
header
required

ISO 8601 timestamp of the request

Query Parameters

bucket_name
string
required
region
string
required
key
string
required
expiresIn
integer

Response

200 - application/json
Signed URL generated successfully
data
object