Document format
ODT Sample Files
OpenDocument Text (.odt) is the OASIS-defined open standard for word processing documents, compatible with LibreOffice, OpenOffice, and other suites. It supports structured styles, embedded objects, and XML-based metadata. Use sample .odt files to confirm ODF compatibility, style preservation, and accurate conversion to and from other document formats.
4 files
All to 50KB
SHA256 verified
Manifest included
Quick facts
CategoryDocument
Total Files4
Extension.odt
MIMEapplication/vnd.oasis.opendocument.text
ManifestJSON
Files first
ODT Sample Files — Download
Starter file
Download| Filename | Size | MIME | Download |
|---|---|---|---|
| 10.3 KB | application/vnd.oasis.opendocument.text |
Download
|
|
| 7.5 KB | application/vnd.oasis.opendocument.text |
Download
|
|
| 8.5 KB | application/vnd.oasis.opendocument.text |
Download
|
|
| 7.0 KB | application/vnd.oasis.opendocument.text |
Download
|
No files match the current filter. Switch to another chip or size range.
Use cases
ODT Testing Workflows
Compare and decide
ODT Format Comparisons
FAQ and reference
ODT File FAQ
Checksum Verification
Use checksums to confirm file integrity after download.
shasum -a 256 your_file_name_here
# Compare output with SHA256 values listed above.
Where is the machine-readable manifest?
Use the manifest when you need stable names, SHA256 values, and URLs for automation.
Use in code — curl, Python, Node, wget
Copy any snippet directly into scripts, test suites, or CI pipelines. All URLs are stable and publicly accessible with no auth required.
# Download odt_sample_file_1MB.odt
curl -L -o odt_sample_file_1MB.odt \
https://samplefile.com/samples/download/document/odt/odt_sample_file_1MB.odt/
# Or fetch a random ODT file
curl -s "https://samplefile.com/samples/api/random?format=odt" | jq -r '.download_url'
# Download odt_sample_file_1MB.odt
wget -O odt_sample_file_1MB.odt \
https://samplefile.com/samples/download/document/odt/odt_sample_file_1MB.odt/
import requests
# Download a specific file
url = "https://samplefile.com/samples/download/document/odt/odt_sample_file_1MB.odt/"
resp = requests.get(url)
with open("odt_sample_file_1MB.odt", "wb") as f:
f.write(resp.content)
# Or fetch a random ODT file via API
meta = requests.get("https://samplefile.com/samples/api/random?format=odt").json()
resp = requests.get(meta["download_url"])
with open(meta["name"], "wb") as f:
f.write(resp.content)
// Download a specific file
const fs = require("fs");
const https = require("https");
const url = "https://samplefile.com/samples/download/document/odt/odt_sample_file_1MB.odt/";
https.get(url, (res) => {
res.pipe(fs.createWriteStream("odt_sample_file_1MB.odt"));
});
// Or fetch a random ODT via the API
const meta = await fetch("https://samplefile.com/samples/api/random?format=odt").then(r => r.json());
const file = await fetch(meta.download_url);
// use file.arrayBuffer(), file.body, etc.
# Random ODT file (JSON response)
GET https://samplefile.com/samples/api/random?format=odt
# All ODT files
GET https://samplefile.com/samples/api/files?format=odt
# Manifest with SHA256 checksums
GET https://samplefile.com/samples/document/odt/manifest.json
# Response includes: name, size_bytes, mime_type, sha256, download_url
Validation Methodology
- Test parser behavior on varied sizes and edge-case encodings.
- Validate text extraction and metadata integrity.
- Confirm conversion and round-trip fidelity where applicable.