The InterPlanetary Development Platform
From IPFS pinning to dedicated IPFS gateways and IPNS names, Filebase provides all the tools you need to build the best decentralized applications.
Trusted by 40,000+ enterprises and developers
Deploy faster
Everything you need to deploy your app
Our enterprise-grade platform provides simple access to the services you need to scale your app.
- IPFS Pinning
Instantly pin data to IPFS using our enterprise-grade storage API, or simply drag and drop. Files are automatically replicated, pinned, and announced from multiple data centers around the world.
- Dedicated IPFS Gateways
Incredibly fast speeds and no rate limits: Filebase Dedicated Gateways are optimized to serve your demanding users. Add your own custom domain for extra flair.
- IPNS Names
Improve UX and access by building reliable decentralized applications with a consistent naming architecture.
Everything you need
All-in-one platform
Build decentralized applications using our Enterprise-grade storage platform.
- Fast Global CDN
- Leverage our edge network to distribute your content globally.
- Geo-Redundant
- Files are automatically replicated, pinned, and announced from multiple data centers around the world.
- Custom Domains
- Provide your users with a branded Web3 experience by using your own domain name.
- Increased Discoverability
- Our unique architecture pins your data from multiple IPFS peers, leading to increased discoverability and performance of your content.
- S3 Compatible API
- Our API functions as a drop-in replacement for Amazon S3. Pinning has never been easier.
- Image Optimization
- Instantly resize images on the fly to fit your needs, as many times as you need.
Trusted by developers worldwide
- Files uploaded to Web3
- 1.5 Billion+
- Developers on the platform
- 40,000+
- Daily requests
- 30 Million+
- Uptime guarantee
- 99.9%
Deploy Faster
S3 Compatible API
Our API functions as a drop-in replacement for Amazon S3. You're not changing code, you're changing configuration. Pinning has never been easier.
- AWS SDK Support.
- Our API functions as a drop-in replacement for Amazon S3.
- Multipart Uploads.
- Large files or folders? Not a problem. With full multipart upload support, you can upload files of any size.
- Presigned URLs.
- Uploads from your users can be securely routed directly to your storage buckets, all without sharing credentials or proxying data.
const AWS = require('aws-sdk');
const fs = require('fs');
const s3 = new AWS.S3({
endpoint: 'https://s3.filebase.com',
region: 'us-east-1',
signatureVersion: 'v4',
});
fs.readFile('image.png', (err, data) => {
if (err) {
console.error(err);
return;
}
const params = {
Bucket: 'my-bucket',
Key: 'test/image.png',
ContentType: 'image/png',
Body: data,
};
const request = s3.putObject(params);
request.on('httpHeaders', (statusCode, headers) => {
console.log(`CID: ${headers['x-amz-meta-cid']}`);
});
request.send();
});
Making IPFS accessible for everyone
Join our thriving community and get up and running quickly with our extensive documentation, guides, and tutorials
- Documentation
Our extensive library of documentation provides integration guides, tutorials, and code examples.
- Blog
Stay up to date on the latest news and developments.
- Discord
Join our community of creators and developers leveraging IPFS and decentralized storage.