
Legal Litigation Support: Archiving Web Evidence for Case Files

Snapshot Site Team
01 Mar 2026 - 03 Mins read
A web page relevant to a legal matter — a contract term posted publicly, an allegedly defamatory statement, evidence of trademark or content infringement, a company's public claims at a specific point in time — is not guaranteed to still exist, or still say the same thing, by the time a case actually resolves. Pages get edited, taken down, or redesigned, often with no record of what they said before. A dated screenshot taken when the page was first identified as relevant closes that gap.
This is a different pattern from Archiving Insurance Policy and Quote Pages for Dispute Resolution, which is specific to an insurer's own transactional pages. Litigation support covers any web page that might matter to a case, regardless of who controls it.
Where This Comes Up
- Contract and terms disputes. Capturing what a website's terms, pricing, or disclosures said at the time a customer interacted with it.
- IP and content disputes. Documenting what content, branding, or claims appeared on a page before it changed or came down.
- Defamation and reputational matters. Capturing a statement as it appeared publicly, with a verifiable date.
- Regulatory and compliance investigations. Establishing what a company's public-facing statements or disclosures were during a specific period.
Capturing a Page for a Case File
curl --request POST \
--url https://api.prod.ss.snapshot-site.com/api/v1/screenshot \
--header 'Content-Type: application/json' \
--header 'x-snapshotsiteapi-key: YOUR_API_KEY' \
--data '{
"url": "https://example.com/page-relevant-to-case",
"format": "png",
"width": 1440,
"fullSize": true,
"hideCookie": true
}'
fullSize: true matters for evidentiary purposes specifically — a partial capture that happens to cut off the exact section a dispute hinges on undermines the record rather than supporting it. A PDF export is also worth considering for a case file, since a document is often the more natural format for legal filing — swap format to pdf on the same request, as covered in Turning Web Pages and Dashboards into Shareable PDF Snapshots.
What Makes a Capture Useful as Evidence
The capture itself is only part of the record. What turns an image into something usable in a case file is the metadata around it: the exact URL, the exact date and time of capture, and ideally a note of who requested it and why. Store these alongside the image or PDF from the start — reconstructing that context after the fact, once a matter is actually in dispute, is far harder than logging it at capture time.
Capturing Promptly, Not Retroactively
The practical value of this pattern depends entirely on capturing a page close to when it first became relevant, not after a dispute has already escalated and the other side has had time to notice and change it. Whenever a page is flagged as potentially relevant to a matter — during initial fact-gathering, not after a formal request is filed — that is the moment to capture it, even if the case never proceeds far enough to need the evidence.
What This Does Not Replace
A screenshot is a useful, dated record — it is not, by itself, a substitute for whatever formal evidence-authentication process a specific jurisdiction or matter requires. Litigation support teams should treat this as building a strong first-line record to work from, not as a replacement for legal judgment about what a given case actually needs to be admissible.
For litigation support teams who need to move fast the moment a page becomes relevant, Snapshot Site turns "let's grab that before it changes" into a one-line request instead of a manual scramble.

