Decentralized Storage

Hanzo IPFS

Managed IPFS Pinning & Gateway

Pin content to IPFS with a single API call. Dedicated gateways with global CDN. No infrastructure to manage.

Pin & Retrieve

Pin content to IPFS with a single API call. Retrieve via your dedicated gateway.

Global CDN

Content delivered from edge nodes worldwide. Sub-100ms latency globally.

Permanent Storage

Content-addressed storage with optional Filecoin backup for long-term persistence.

Auto-Replication

Data replicated across 3+ nodes automatically. Geographic redundancy included.

Access Control

Private gateways with authentication. Token-gated content supported.

Dedicated Nodes

Enterprise: dedicated IPFS nodes with custom configuration and SLAs.

ipfs.ts
import { HanzoIPFS } from "@hanzo/storage";

const ipfs = new HanzoIPFS({
  apiKey: process.env.HANZO_API_KEY,
});

// Pin a file
const { cid } = await ipfs.pin({
  file: Buffer.from("Hello IPFS!"),
  name: "hello.txt",
});
// cid: QmT78zSuBmuS4z925WZfrqQ1qHaJ56DQaTfyMUF7F8ff5o

// Pin JSON (NFT metadata)
const metadata = await ipfs.pinJSON({
  name: "Cool NFT #1",
  description: "A very cool NFT",
  image: "ipfs://YOUR_IPFS_HASH",
  attributes: [
    { trait_type: "Background", value: "Blue" },
  ],
});

// Retrieve via your gateway
const url = ipfs.gatewayURL(cid);
// https://your-gateway.hanzo.network/ipfs/QmT78z...

// Pin from URL
await ipfs.pinFromURL("https://example.com/image.png");

// Unpin when done
await ipfs.unpin(cid);

Use Cases

NFT Metadata

Store NFT images, animations, and metadata

dApp Assets

Host frontend assets for decentralized apps

Data Archives

Permanent storage for DAOs and protocols

Media Streaming

Video and audio content delivery

Store Forever, Serve Instantly

1GB free. Pay only for what you pin. No egress fees.