πŸ–₯️ Shiare β€” Sia Network Downloader

checking server…

Sharing Identity

Sorry, you just must log in with your sia.storage account and authorize this app. It won't have access to any of your data β€” it's limited to its own data, which it won't have. We're waiting for sharing keys (sia-sdk-rs#406) and indexd#1029 to land so this step goes away.

no sharing identity yet

Download

Object
Progress
0 / 0 B (0%)
plaintext received0 B
encoded shards0 B
average speedβ€”
elapsed0.0s
concurrencyβ€”
attemptβ€”
Parts
Hosts
Known Files
loading…
πŸ“– How does a Sia URL work?

A share URL bundles everything needed to find and decrypt a file β€” except payment. Here's the breakdown:

sia://sia.storage/objects/4d2f65ee…f7fdf4491/shared?sv=4102444799&sc=-z24Qpm9OL6p8TYDZvXBS6_3FZ3hx2Q2wD6hyWRny74=&ss=XWeYi6Zd8g8Udtz4A6qTqXyo-M_N7B7EzGTIddswpeGhwBVsRgn98X5scSVxca8Pv3I--iY6sbI4INGEqMygDQ==#encryption_key=_uPsqCD2ceAYqAp8X-83SCsiVA38eFlpCrrfl32NCiw=
sia://
Scheme β€” like https:// but for the Sia network. The SDK converts it to https:// before fetching.
sia.storage
Indexer host β€” the server that knows which hosts hold your file's shards.
/objects/<id>/shared
Path β€” the object ID (hash of its slabs) + the /shared endpoint that returns slab metadata.
?sv=…
validUntil β€” Unix timestamp. The URL stops working after this time. No max enforced β€” can be set far future.
&sc=…
credential β€” the uploader's public key (base64url). Identifies who signed the URL.
&ss=…
signature β€” ed25519 signature over method β€– host β€– path β€– validUntil. The indexer verifies this before serving metadata.
#encryption_key=…
Fragment β€” the 32-byte data encryption key (base64url). Lives in the URL fragment, so it's never sent to the indexer β€” only the browser sees it. Without it, the downloaded data is unreadable.

What's missing? Payment. The URL grants access to metadata + the encryption key, but host reads require an app key (OAuth) to mint payment tokens. That's why the downloader needs to register a sharing identity.