GET
/
api
/
v1
/
files
/
list
curl --request GET \
  --url https://api.apexxcloud.com/api/v1/files/list \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Signature: <api-key>' \
  --header 'X-Timestamp: <api-key>'
{
  "data": {
    "contents": {
      "name": "<string>",
      "type": "<string>",
      "path": "<string>",
      "children": [
        {
          "name": "<string>",
          "type": "<string>",
          "path": "<string>",
          "size": 123,
          "content_type": "<string>",
          "last_modified": "<string>",
          "visibility": "<string>"
        }
      ]
    },
    "pagination": {
      "current_page": 123,
      "total_pages": 123,
      "total_items": 123,
      "items_per_page": 123
    }
  }
}

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
prefix
string
page
integer
limit
integer

Response

200 - application/json
List of bucket contents
data
object