Download an object from Scaleway Object Storage
scaleway_s3_get_objectRetrieve object content and metadata from a Scaleway S3 bucket. Returns UTF-8 text or base64; use presigned URL for large 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). Like every tool in this server, the result is truncated to MAX_OUTPUT_CHARS - for large objects, 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). |