Skip to main content
GET
https://cdn.sacul.cloud
/
api
/
list-objects
List Objects
curl --request GET \
  --url https://cdn.sacul.cloud/api/list-objects
Native S3 listing for the bucket. Unlike the search API, this returns raw S3 object data.

Authentication

Requires an API Key via Authorization, X-API-Key, or apiKey query parameter.

Query Parameters

bucketName
string
required
The name of the bucket to list.
prefix
string
Filter by path prefix (e.g., uploads/).
maxKeys
number
default:"1000"
Max items to return (maximum 1000).
continuationToken
string
For pagination.

Example

curl "https://cdn.sacul.cloud/api/list-objects?bucketName=my-bucket&prefix=images/" \
    -H "Authorization: Bearer <your-api-key>"