OFX sample file
ofx_checking_statement_sample.ofx
1.8 KB
application/octet-stream
SHA256 verified
File details
Filename
ofx_checking_statement_sample.ofxSize1.8 KB (1802 bytes)
MIME type
application/octet-streamExtension
.ofxSHA256
8511eb578221a4472400a6d65d7debfb381f081235e6801efb727fc8b0a5e73fDownload commands
Use in scripts and tests
curl -L -o ofx_checking_statement_sample.ofx \
https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/
wget -O ofx_checking_statement_sample.ofx \
https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/
import requests
url = "https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/"
resp = requests.get(url)
with open("ofx_checking_statement_sample.ofx", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("ofx_checking_statement_sample.ofx", buf);
# Download and verify SHA256
curl -L -o ofx_checking_statement_sample.ofx https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/
echo "8511eb578221a4472400a6d65d7debfb381f081235e6801efb727fc8b0a5e73f ofx_checking_statement_sample.ofx" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/ofx/ofx_checking_statement_sample.ofx/").content
assert hashlib.sha256(data).hexdigest() == "8511eb578221a4472400a6d65d7debfb381f081235e6801efb727fc8b0a5e73f"
More OFX files
Other OFX Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
ofx_credit_card_statement_sample.ofx |
1.2 KB | 9b9e6b51841df2bd… |
Download |
ofx_loan_activity_sample.ofx |
1006 B | 55207903d6c79d2f… |
Download |