Download an object from Scaleway Object Storage
scaleway_s3_get_objectDownload an object's content and metadata from Scaleway Object Storage. Returns UTF-8 text or base64, capped at 5 MB; use presigned URL for larger objects.
Instructions
Download a single object's content and metadata. Content is returned as UTF-8 text when it round-trips cleanly as text, otherwise as base64 (see 'encoding' in the result). Decoded size is capped (MAX_GET_OBJECT_BYTES, default 5 MB) - larger objects fail fast; use scaleway_s3_generate_presigned_url instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Object key (the full path within the bucket), e.g. 'invoices/2026-08/inv-001.pdf'. | |
| bucket | Yes | Bucket name, e.g. 'payments-backups'. | |
| region | No | Region the bucket lives in. Defaults to the server's configured region (fr-par). |