Updated on 2026-06-30 GMT+08:00

List Objects in a Bucket

Function

This API is used to list objects in a bucket.

Calling Method

For details, see Calling APIs.

URI

POST /v2/{project_id}/objectstorage/buckets/objects

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

The project ID.

Minimum: 1

Maximum: 1024

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

The token used for IAM authentication. Ensure that the project ID in the token matches the project ID in the request URI.

Minimum: 1

Maximum: 16384

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

cloud_type

Yes

String

The cloud service provider.

AWS: Amazon Web Services

Aliyun: Alibaba Cloud

Qiniu: Qiniu Cloud

QingCloud

Tencent: Tencent Cloud

Baidu: Baidu Cloud

KingsoftCloud

Azure: Microsoft Azure

UCloud

HuaweiCloud: Huawei Cloud

Google: Google Cloud

URLSource: URL data sources

HEC

Minimum: 0

Maximum: 100

file_path

Yes

String

The path of object files to be queried in the destination bucket, which must end with a slash (/).

Minimum: 0

Maximum: 1023

ak

No

String

The AK for accessing the source bucket. Enter a maximum of 100 characters.

Minimum: 0

Maximum: 100

sk

No

String

The SK for accessing the source bucket. Enter a maximum of 100 characters.

Minimum: 0

Maximum: 100

connection_string

No

String

The connection string, which is used for Microsoft Azure Blob authentication.

Minimum: 0

Maximum: 2048

json_auth_file

No

String

The file used for Google Cloud Storage authentication.

Minimum: 0

Maximum: 65535

data_center

Yes

String

The data center region.

Minimum: 0

Maximum: 100

page_size

Yes

Integer

The page size.

Minimum: 0

Maximum: 100

behind_filename

Yes

String

The name of the last object on the current page (offset).

Minimum: 0

Maximum: 1024

app_id

No

String

Tencent Cloud app ID. This parameter is mandatory when cloud_type is Tencent. You can obtain the value from the account information page on the Tencent Cloud console.

Minimum: 0

Maximum: 255

bucket_name

Yes

String

The bucket name.

Minimum: 0

Maximum: 100

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

next_page

Boolean

Whether the next page exists.

next_marker

String

The marker required for querying the next page (object name at the end of the current page, offset)

Minimum: 0

Maximum: 1024

records

Array of ShowBucketRecord objects

Record returned for querying bucket information.

Array Length: 0 - 100

Table 5 ShowBucketRecord

Parameter

Type

Description

name

String

Object name.

Minimum: 0

Maximum: 1024

size

String

The object size. If the object does not have the size attribute, -- is returned.

Minimum: 0

Maximum: 100

Status code: 400

Table 6 Response body parameters

Parameter

Type

Description

error_msg

String

Error message.

error_code

String

Error code.

Example Requests

This example lists objects in a specified bucket and returns the object information on multiple pages.

POST https://{endpoint}/v2/{project_id}/objectstorage/buckets/objects

{
  "page_size" : 100,
  "behind_filename" : "",
  "file_path" : "A/",
  "cloud_type" : "HuaweiCloud",
  "bucket_name" : "xxx",
  "ak" : "xxxxxak",
  "sk" : "xxxxxsk",
  "data_center" : "cn-north-x"
}

Example Responses

Status code: 200

The response body for querying bucket information.

{
  "next_page" : false,
  "next_marker" : null,
  "records" : [ {
    "name" : "xxxx",
    "size" : "--"
  }, {
    "name" : "xxxx",
    "size" : "73.59 MB"
  } ]
}

Status Codes

Status Code

Description

200

The response body for querying bucket information.

400

Standard error response.

Error Codes

See Error Codes.