Skip to main content
GET
/
{bucketName}
/
{*path}
Get/Stream Object
curl --request GET \
  --url https://cdn.sacul.cloud/{bucketName}/{*path}
{
  "404 Not Found": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.sacul.cloud/llms.txt

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

Fetch a file from a specific bucket. This endpoint is optimized for high-performance delivery and supports streaming for large files.

Query Parameters

bucketName
string
required
The name of the bucket containing the file.
*path
string
required
The full path to the file within the bucket (e.g., images/banner.png).

Headers

Range
string
Standard HTTP Range header for partial content (e.g., bytes=0-1023). Highly recommended for video seeking.

Responses

200 OK
file
Standard file delivery.
206 Partial Content
file
Returned when a valid Range header is provided.
404 Not Found
object
Returns a placeholder if configured, or a standard error response.

Examples

Standard Request
curl https://cdn.sacul.cloud/my-bucket/images/logo.png
Streaming with Range
curl -H "Range: bytes=0-1000" https://cdn.sacul.cloud/my-bucket/videos/intro.mp4