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