List Objects (GET)
List objects in a bucket via GET with cursor-based pagination. Use POST /list for filtering and sorting.
Path parameters
The unique identifier of the bucket.
The unique identifier of the bucket.
Query parameters
Response
Successful Response
Example response
{
"pagination": {
"has_more": false,
"limit": 10,
"skip": 0
},
"results": [
{
"blobs": [],
"bucket_id": "bkt_9xy8z7",
"created_at": "2024-10-21T10:30:00Z",
"key_prefix": "/contract-2024",
"metadata": {
"category": "contracts",
"year": 2024
},
"object_id": "obj_123abc456def",
"status": "DRAFT",
"updated_at": "2024-10-21T10:30:00Z"
}
]
}Changes
Changed in 4 of the 30 revisions of this API.23
- ●
added the new
signalsenum value to theresults/items/source_details/items/typeresponse property for the response status200response-property-enum-value-added
- ●
- ○
the endpoint scheme security
BearerAuth AND NamespaceHeaderwas added to the APIapi-security-added
This revision also has 3 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ●
added the new
DEACTIVATEDenum value to theresults/items/statusresponse property for the response status200response-property-enum-value-added
- ●
- ○
added the new optional
queryrequest parameterafternew-optional-request-parameter
- ○
added the new optional
queryrequest parameternext_cursornew-optional-request-parameter
- ○