Skip to content

docs: add Retrieval page under Core Concepts#819

Open
nijoe1 wants to merge 1 commit into
masterfrom
docs/add-retrieval-in-concepts
Open

docs: add Retrieval page under Core Concepts#819
nijoe1 wants to merge 1 commit into
masterfrom
docs/add-retrieval-in-concepts

Conversation

@nijoe1
Copy link
Copy Markdown
Contributor

@nijoe1 nijoe1 commented Jun 3, 2026

Adds a Retrieval page covering how the Filecoin Onchain Cloud serves data back, across direct (non-CDN) retrieval, Filecoin Beam (CDN), and IPFS retrieval via Filecoin Pin.

Closes #816

@nijoe1 nijoe1 requested review from hugomrdias and rvagg as code owners June 3, 2026 08:47
@github-project-automation github-project-automation Bot moved this to 📌 Triage in FOC Jun 3, 2026
@cloudflare-workers-and-pages
Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
synapse-dev da0a9de Jun 03 2026, 08:23 AM

@BigLep BigLep moved this from 📌 Triage to 🔎 Awaiting review in FOC Jun 3, 2026
@BigLep BigLep requested a review from Copilot June 3, 2026 15:04
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new Core Concepts → Retrieval documentation page explaining how Filecoin Onchain Cloud (FOC) serves stored data back to applications, including direct storage-provider retrieval, CDN-accelerated retrieval via Filecoin Beam/FilBeam, and IPFS-style retrieval via Filecoin Pin.

Changes:

  • Adds a new Retrieval core-concepts page describing retrieval fundamentals and “store and serve” behavior.
  • Documents the three retrieval paths with a Mermaid flow diagram and a FilBeam quota-check example.
  • Links out to related guides (Storage Operations, FWSS, FilBeam docs).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


[**Filecoin Beam**](https://docs.filbeam.com/) is the retrieval and delivery layer of FOC. It is a content delivery network that caches pieces close to where they are requested, cutting retrieval latency from seconds to milliseconds.

FilBeam serves each piece from a per-account subdomain keyed by PieceCID. On mainnet:
import { Synapse } from "@filoz/synapse-sdk"
import { privateKeyToAccount } from "viem/accounts"

const synapse = await Synapse.create({ account: privateKeyToAccount("0x..."), source: "my-app" })

## IPFS Retrieval

For applications that speak IPFS natively, content stored through [**Filecoin Pin**](/core-concepts/filecoin-pin/) is also served over the IPFS network. Filecoin Pin packs your data into an IPFS CAR, stores it on FOC providers, and announces it to IPNI, so it resolves through standard IPFS gateways by its root CID:
https://dweb.link/ipfs/<your-root-cid>
```

This path lets IPFS-native apps treat FOC as a durable, verifiable backing store while keeping the addressing and access patterns their stack already uses. See the [Filecoin Pin quick start](/getting-started/filecoin-pin/) to pin and retrieve your first file.

- [Storage Operations](/developer-guides/storage/storage-operations/) - Upload and download with the SDK
- [Filecoin Warm Storage Service](/core-concepts/fwss-overview/) - The service layer behind storage and retrieval
- [Filecoin Pin](/core-concepts/filecoin-pin/) - Guaranteed IPFS pinning backed by FOC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: 🔎 Awaiting review

Development

Successfully merging this pull request may close these issues.

Docs: add a Retrieval page under Core Concepts

3 participants