Skip to main content
GET
/
api
/
v1
/
buckets
/
{bucket_id}
/
files
List bucket files
curl --request GET \
  --url https://api.example.com/api/v1/buckets/{bucket_id}/files \
  --header 'Authorization: <api-key>'
{
  "bucket_uuid": "<string>",
  "count": 123,
  "files": [
    {
      "blob_sha256": "<string>",
      "content_type": "<string>",
      "created_at": "<string>",
      "file_uuid": "<string>",
      "filename": "<string>",
      "size_bytes": 123,
      "status": "pending"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Path Parameters

bucket_id
string
required

Bucket ID

Response

OK

bucket_uuid
string
count
integer
files
object[]