Skip to main content

S3-Compatible object storage with no egress fees.

Filebase delivers familiar S3 semantics on top of a globally distributed CDN — at $0.015 per GB-month, with no charges for outbound egress. Use the AWS SDK, AWS CLI, or any S3 client you already know.

Why developers pick Filebase

  • No egress fees. Outbound bandwidth is free. You pay only for what you store.
  • Drop-in S3 compatibility. Point any AWS SDK or S3 client at s3.filebase.io and it just works — same authentication, same operations, same response shapes.
  • Aggressive edge caching. Filebase operates its own global CDN, with hot objects served from edge points-of-presence close to your users.
  • Encrypted by default. Server-side encryption at rest and TLS in transit. No flag to flip.
  • Predictable pricing. $0.015 per GB-month for storage. See the pricing page for full details.

Common starting points

Endpoint and region

Every Filebase S3 request uses the same endpoint and region. If you've used AWS S3 before, only these two values change:

SettingValue
Endpointhttps://s3.filebase.io
Regionauto
Signature versions3v4

Drop those into any AWS SDK and continue using the operations you already know.

AWS SDK for JavaScript v3
import { S3Client } from '@aws-sdk/client-s3';

const s3 = new S3Client({
endpoint: 'https://s3.filebase.io',
region: 'auto',
credentials: {
accessKeyId: process.env.FILEBASE_KEY!,
secretAccessKey: process.env.FILEBASE_SECRET!,
},
});

What's in these docs

  • Get started — sign-up, access keys, and quickstart guides for the AWS CLI and the most popular AWS SDKs.
  • Core concepts — buckets, objects, public/private access, ACLs, encryption, and how the Filebase CDN works.
  • S3 API — endpoint, supported operations, multipart upload, pre-signed URLs, CORS, error model, and rate limits.
  • Platform API — programmatic access to your storage and bandwidth usage.
  • SDKs — modern AWS SDK examples for JavaScript, Python, Go, Java, .NET, PHP, Ruby, Rust, and more.
  • Frameworks — Django, Laravel, Nuxt, Vue, AWS Lambda, and other framework integrations.
  • Tools — AWS CLI, rclone, s3cmd, Cyberduck, backup software, NAS devices, CDNs, Kubernetes operators.
  • Recipes — task-oriented walkthroughs for the most common workflows.
  • Account — console walkthrough, service limits, FAQ.

Looking for something specific? Use the search box at the top of every page.