
AIOZ Pin is built on three parts, and its own docs name them directly: Files Pinning, NFT Management, and Premium Gateways. That structure has not changed since AIOZ first introduced the product, but the details under each part have, storage and bandwidth now have real published prices, the SDK has settled on specific method names, and AIOZ Pin now implements the same open pinning standard used across the industry. This article walks through what each part actually does today, with the exact numbers and method names pulled directly from AIOZ Pin's current documentation rather than the general feature descriptions you'll find in older overview posts.
TL;DR:
AIOZ Pin is a pay-as-you-go IPFS pinning service built on the AIOZ DePIN network. Per its own documentation, it is "the top layer of the AIOZ DePIN," providing IPFS storage on top of AIOZ's existing distributed node infrastructure. Everything the product does falls under one of its three documented components:
| Component | What it does |
|---|---|
| Files Pinning | Keeps your files persistently available on IPFS instead of subject to normal garbage collection |
| NFT Management | Pins an NFT's asset and metadata together through a dedicated SDK method |
| Premium Gateways | Serves pinned content through a private access point without public rate limits |
The rest of this article covers each one with the current technical detail.
IPFS nodes periodically run garbage collection, clearing data that isn't marked as important to free up space. Pinning is what stops that from happening to your files. AIOZ Pin's docs describe this as guaranteeing "long-term storage and accessibility," but there's no published SLA or uptime percentage behind that word. What's actually documented is the mechanism: your data gets replicated as independent, CID-addressed copies across AIOZ's node network, and nodes submit proofs confirming they're actually storing what they claim to store. That's a real technical safeguard, worth understanding on its own terms rather than taking "guaranteed" at face value.
One number worth being precise about: AIOZ Pin's marketing describes "unlimited pinned files," but its billing page tells a more specific story. The first 40,000 pinned files are free, and each additional 1,000 costs $0.10. There's no hard technical ceiling, so "unlimited" isn't wrong, but it isn't free past that point either.
Every file pinned to IPFS is reachable through public gateways, open HTTP endpoints that let anyone retrieve a CID, subject to the rate limits that keep public infrastructure usable for everyone. AIOZ Pin's Premium Gateways give a project its own private entry point instead, one that isn't subject to those public rate limits and supports a custom domain. If your application depends on IPFS content loading reliably for real users, that's the practical difference: a public gateway can throttle you during a traffic spike, a dedicated one is yours alone.
AIOZ Pin also layers gateway-side image optimization on top of this, resize, format, and quality transforms applied through URL query parameters rather than re-uploading edited copies. That's covered in full in AIOZ's dedicated image optimization and dedicated gateways posts if you want the deeper technical walkthrough.
NFT Management is one of AIOZ Pin's three named components, not a bolt-on feature. In practice, it's a specific SDK method: client.pinNft() in the @aioznetwork/aioz-pin-sdk Node.js package, which pins an NFT's asset and its metadata together in a single call, so you don't end up with orphaned metadata pointing at an asset that was never actually pinned (or the reverse). The same package also exposes pinFilesToIPFS({filePaths, options}) and pinFolderToIPFS({depth, sourcePath, options}) for general file and directory pinning (AIOZ Pin's own quick-start guide writes the first one as the singular pinFileToIPFS, but the actual published SDK, version 1.0.1, ships the plural, array-based pinFilesToIPFS, so that's the name to use in real code), plus pinByHash() for pinning content you've already got a CID for. There's a separate CLI tool on the AIOZNetwork GitHub org for the same operations from the command line: pinning login --key ... --secret ..., pinning pin --file, pinning list-pins, pinning unpin --id=....
Content addressing is what makes this useful for NFTs specifically: a file's CID is derived from its content, so any change to the file produces a different CID. That gives you a built-in tamper check for metadata integrity that a regular URL never had.
AIOZ Pin bills storage and bandwidth separately, both at a flat $20 per TB per month, prorated daily against a wallet balance funded with AIOZ tokens. There are no bundled tiers, you pay for what you use. Combined with the 40,000 free pinned files mentioned above, that's the full shape of the cost model. A deeper cost breakdown and real comparison against bundled-plan competitors is coming in a dedicated pricing article, this is the number you need to know going in.
AIOZ Pin's Pinning API implements the IPFS Pinning Service API standard, the same specification used by most other pinning providers. That matters in a practical way: code written against that standard needs an endpoint and API key swap to move between providers, not a rewrite. If you're evaluating AIOZ Pin against something else, you're not locking yourself into a proprietary integration to try it.
What are AIOZ Pin's three main components? Files Pinning, NFT Management, and Premium Gateways, per AIOZ Pin's own documentation. Files Pinning keeps content persistently available, NFT Management pins NFT assets and metadata together through a dedicated SDK method, and Premium Gateways serve content through a private, non-rate-limited access point.
Does AIOZ Pin guarantee my files stay online forever? AIOZ Pin's marketing uses "guaranteed" language, but there's no published SLA or uptime percentage. What's actually documented is the mechanism behind it: data is replicated as independent CID-addressed copies, and nodes submit proofs of storage.
What does AIOZ Pin's NFT Management feature actually do? It pins an NFT's asset and its metadata together in one call, through the pinNft() method in AIOZ Pin's Node.js SDK, instead of requiring you to pin each piece separately and hope they stay in sync.
How much does AIOZ Pin cost? Storage and bandwidth are both billed at a flat $20 per TB per month, prorated daily. The first 40,000 pinned files are free, then $0.10 per additional 1,000.
Can I switch between AIOZ Pin and another pinning provider without rewriting my code? Largely yes for the core pinning calls, since AIOZ Pin implements the same IPFS Pinning Service API standard used by most other providers. You'll still need to update provider-specific features and your API key.
What's the difference between a public and premium IPFS gateway on AIOZ Pin? A public gateway is open to anyone and subject to shared rate limits. AIOZ Pin's Premium Gateways give a project a private, custom-domain access point that isn't subject to those limits.

IPFS defaults to 256 KiB fixed-size chunks, but also ships Rabin and Buzhash content-defined chunkers. Here is why the choice affects deduplication.

An IPFS CID is not a random string. It encodes a version, a codec, and a hash algorithm plus digest. Here is how to decode a real CID piece by piece.

IPFS does not use a B-tree for large directories. It uses a HAMT, a Hash Array Mapped Trie. Here is exactly how it shards a folder once it outgrows one block.

AIOZ Pin image resizing happens straight in the gateway URL, no upload step or separate service. Here is every img- parameter, with real srcset examples.

x402 payments let ERC-8004 weight a paid AI agent interaction more heavily than free work in its reputation score. Here is exactly how that link works.

AIOZ Pin NFT API calls pin an asset and its metadata as two tracked pins under one record. Here is how to automate it directly over REST, no SDK needed.