JSON sample file
json_sample_file_25MB.json
25.0 MB
application/json
SHA256 verified
File details
Filename
json_sample_file_25MB.jsonSize25.0 MB (26214400 bytes)
MIME type
application/jsonExtension
.jsonSHA256
89c74b4214ac8d4fb80c1fdf773a1471a905745454e8dacebfb84f0534dc3a0fDownload commands
Use in scripts and tests
curl -L -o json_sample_file_25MB.json \
https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/
wget -O json_sample_file_25MB.json \
https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/
import requests
url = "https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/"
resp = requests.get(url)
with open("json_sample_file_25MB.json", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("json_sample_file_25MB.json", buf);
# Download and verify SHA256
curl -L -o json_sample_file_25MB.json https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/
echo "89c74b4214ac8d4fb80c1fdf773a1471a905745454e8dacebfb84f0534dc3a0f json_sample_file_25MB.json" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/document/json/json_sample_file_25MB.json/").content
assert hashlib.sha256(data).hexdigest() == "89c74b4214ac8d4fb80c1fdf773a1471a905745454e8dacebfb84f0534dc3a0f"
More JSON files
Other JSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
json_array_records_sample.json |
1.2 KB | a7f10292a0df559e… |
Download |
json_config_document_sample.json |
302 B | df24af796384e71c… |
Download |
json_deeply_nested_payload_sample.json |
308 B | 00db331a8072997a… |
Download |
json_duplicate_keys_sample.json |
97 B | c83e6df3b568a228… |
Download |
json_large_integer_precision_sample.json |
158 B | fa6d5443870a162e… |
Download |
json_minified_webhook_payload_sample.json |
240 B | 1bed3da4414ced1a… |
Download |
Learn more