List objects in a Scaleway Object Storage bucket
scaleway_s3_list_objectsList object keys in a Scaleway S3 bucket with optional prefix filtering and delimiter grouping. Supports pagination via continuation tokens.
Instructions
List object keys in a bucket, optionally scoped by prefix and grouped by delimiter (like folders). Paginated - pass the returned next_continuation_token to continue.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max keys to return in this page (S3 hard cap is 1000). | |
| bucket | Yes | Bucket name, e.g. 'payments-backups'. | |
| prefix | No | Only return keys starting with this prefix, e.g. 'invoices/2026-08/'. | |
| region | No | Region the bucket lives in. Defaults to the server's configured region (fr-par). | |
| delimiter | No | Group keys sharing a prefix up to this delimiter (typically '/') into common_prefixes, like folders - matching keys are excluded from 'objects'. | |
| continuation_token | No | From a previous call's next_continuation_token, to fetch the next page. |