Skip to main content

S3 Compatible API

Access your data using the industry-standard S3 API for object storage.

Overview

S3-compatible storage provides:
  • Object storage - Store files as objects
  • REST API - Standard HTTP interface
  • Scalability - Virtually unlimited storage
  • Durability - High data protection

Authentication

Access Keys

export AWS_ACCESS_KEY_ID="your-access-key"
export AWS_SECRET_ACCESS_KEY="your-secret-key"
export AWS_ENDPOINT_URL="https://s3.antryk.com"

Basic Operations

Upload Files

import boto3

s3 = boto3.client(
    's3',
    endpoint_url='https://s3.antryk.com',
    aws_access_key_id='your-access-key',
    aws_secret_access_key='your-secret-key'
)

# Upload a file
s3.upload_file('local-file.txt', 'my-bucket', 'remote-file.txt')

API Reference

Complete S3 API reference