Go to Apify Store
User picture

Sentient Pattern

sentient-pattern

**Built with 🔥 by Sentient Pattern Inc.

ACTOR STATS

1 public Actor

2 total users

1 monthly user

>99% runs succeeded

🔒 FluxPod Verification Actor

Create tamper-evident, cryptographically verifiable records of web content using IPFS content-addressing, Merkle trees, and blockchain anchoring.

🎯 The Problem

When you scrape web content, how do you prove it was real?

  • Legal challenges: "Did you really see that content?"
  • Data disputes: "That's not what the page said!"
  • Temporal issues: Page changes after scraping
  • Audit requirements: Prove data authenticity for compliance
  • Chain of custody: Document exact state observed

Current solutions: Screenshots, Archive.org, prayer 🙏

FluxPod solution: Cryptographic verification with tamper-evident proofs ✅


🔐 How It Works

1. Content Capture

Captures complete page HTML (and optionally resources like CSS, JS, images)

2. Cryptographic Hashing

3. IPFS Content-Addressing

4. Verification Package

📊 Output Format

{
"url": "https://example.com",
"title": "Example Domain",
"timestamp": "2025-12-16T21:30:00.000Z",
"verification": {
"cid": "bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi",
"merkleRoot": "0x8f4e...",
"level": "full",
"ipfsGatewayUrl": "https://ipfs.io/ipfs/bafy..."
},
"proof": {
"sha256": "a8f3...",
"blake3": "7c9e...",
"merkleLeaves": ["0x3a...", "0x7b..."]
},
"howToVerify": [
"1. Download content from IPFS",
"2. Compute SHA256 hash of retrieved content",
"3. Compare to recorded hash",
"4. Verify Merkle root integrity"
]
}

Verification Levels

Basic - Hash verification only Full (Recommended) - Complete verification Legal - Maximum evidence strength

Additional Options

  • includeResources: Capture CSS, JS, images
  • blockchainAnchor: Publish Merkle root to blockchain
  • maxConcurrency: Process multiple pages simultaneously

Public Actors