๐Ÿ“ก DNS-STORAGE

Store Files in DNS Records โ€” Globally Distributed

Store any file in Cloudflare's DNS infrastructure.
Censorship-resistant. Globally replicated. 100% FREE.

Try it FREE โ†’ How it Works

๐ŸŒ Globally Distributed

Your data is stored in Cloudflare's DNS network โ€” replicated across 300+ data centers worldwide.

๐Ÿ›ก๏ธ Censorship Resistant

DNS is fundamental internet infrastructure. If DNS works, your data is accessible.

๐Ÿ’ฐ 100% Free

No signup. No credit card. No limits*. Store and retrieve instantly.

*Fair use: 50KB max per file

โšก Instant Access

Data served from the nearest edge location. Sub-50ms latency worldwide.

PRICE

$0

Forever free. No catch.

UNLIMITED REQUESTS

๐Ÿงช Live Demo

๐Ÿ“ค Store
๐Ÿ“ฅ Fetch
๐Ÿ“‹ List

Store any text or data in DNS:

Retrieve file by hash:

View all stored files:

๐Ÿ”ง How It Works

1
Upload โ€” Your data is base64 encoded and split into 200-byte chunks.
2
Store โ€” Each chunk becomes a DNS TXT record: _store.{hash}.c{N}.synthetic-context.net
3
Replicate โ€” Cloudflare automatically propagates to 300+ global PoPs.
4
Retrieve โ€” Fetch by hash from anywhere. Chunks reassembled automatically.

๐Ÿ“ก API Reference

Store File

curl -X POST https://synthetic-context.net/v1/dns/store \
  -H "Content-Type: application/json" \
  -d '{"data": "Hello World!", "filename": "hello.txt"}'

# Response:
{"hash": "a8093058f1e9", "size": 12, "chunks": 1}

Fetch File

curl https://synthetic-context.net/v1/dns/fetch/a8093058f1e9

# Response:
{"data": "Hello World!", "filename": "hello.txt", "size": 12}

List Files

curl https://synthetic-context.net/v1/dns/list

# Response:
{"files": {"a8093058f1e9": {"name": "hello.txt", "size": 12, ...}}}

Delete File

curl -X DELETE https://synthetic-context.net/v1/dns/delete/a8093058f1e9

# Response:
{"deleted": "a8093058f1e9"}

๐Ÿ’ก Use Cases

๐Ÿ” Dead Man's Switch

Store encrypted secrets that persist even if your servers go down.

๐Ÿ“ Config Distribution

Distribute configuration to edge devices via DNS queries.

๐Ÿค– AI Agent Memory

Persistent key-value storage for autonomous agents.

๐Ÿ”— Blockchain Anchoring

Store transaction proofs in immutable DNS records.