Leaving S3 is a config change,
not a rewrite.
Point your existing S3 tools at Fil One. $4.99/TB flat, no egress. Same SDK, same API, lower bill.
No credit card required · No egress fees · Connects in minutes
Change the endpoint. Nothing else.
Fil One implements the S3 API. The code that works on AWS works here — PutObject, GetObject, ListObjectsV2, multipart upload, presigned URLs.
# Before — AWS S3s3 = boto3.client("s3",region_name="us-east-1",)# After · Fil One (no other changes)s3 = boto3.client("s3",endpoint_url="https://eu-west-1.s3.filonecontent.com",aws_access_key_id=os.environ["FIL_ACCESS_KEY"],aws_secret_access_key=os.environ["FIL_SECRET_KEY"],region_name="eu-west-1",)
// Before — AWS S3const s3 = new S3Client({ region: "us-east-1" });// After · Fil Oneconst s3 = new S3Client({endpoint: "https://eu-west-1.s3.filonecontent.com",region: "eu-west-1",credentials: {accessKeyId: process.env.FIL_ONE_ACCESS_KEY,secretAccessKey: process.env.FIL_ONE_SECRET_KEY,},});
What is compatible
PutObject, GetObject, DeleteObject, HeadObject, CopyObject, ListObjectsV2, CreateBucket, DeleteBucket, multipart upload, presigned URLs. Standard Auth v4 signing. For a full compatibility list, see docs.fil.one.
10 TB stored, 10 TB read/month. What changes.
- Storage
- $236
- Egress
- $922
- API / ops
- $0.40
- Total / month
- $1,158
- Storage
- $50
- Egress
- $0
- API / ops
- $0
- Total / month
- $50
| Provider | Storage | Egress | API / ops | Total / month |
|---|---|---|---|---|
| AWS S3 Standard | $236 | $922 | $0.40 | $1,158 |
| Fil One You | $50 | $0 | $0 | $50 |
AWS S3 Standard us-east-1 Q2 2026: $0.023/GB storage, $0.09/GB internet egress, $0.0004/1K GET. Computed from stated inputs — 10,240 GB × $0.023 = $235.52 storage; 10,240 GB × $0.09 = $921.60 egress; 1M × $0.0004/1K = $0.40 ops. Fil One: 10 TB × $4.99 = $49.90, egress $0, ops $0.
S3 parity. Lower bill.
The same tools, the same APIs, the same integration patterns. The line items that dominated the invoice do not exist here.
Full S3 API parity
PutObject, GetObject, DeleteObject, ListObjectsV2, multipart upload, presigned URLs, and bucket operations all work as on AWS. Existing S3 code connects without modification.
No egress on reads
Every GET request on AWS charges $0.09/GB out to the internet. On Fil One, reads are included in flat storage. The SDKs behave identically; the bill does not.
Predictable flat cost
Storage at $4.99/TB. No egress, no per-request fees, no storage tier waterfall. The line item you plan for is the line item that ships.
Flat cost at any scale
$4.99/TB whether you migrate 1 TB or 1 PB. The rate per TB does not change as the dataset grows.
Same SDK. New endpoint. Lower bill.
Free 1 TB evaluation. Change two lines and run the same workload. The egress line will not be there.
No credit card required · No egress fees · Connects in minutes