JSON sample file
json_sample_file_1MB.json
1.0 MB
application/json
SHA256 verified
File details
Filename
json_sample_file_1MB.jsonSize1.0 MB (1056575 bytes)
MIME type
application/jsonExtension
.jsonSHA256
c503bbb92e3e48fafded236e62eb3b311433db4ae9a9ff08d20f001cd01782c1Download commands
Use in scripts and tests
curl -L -o json_sample_file_1MB.json \
https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/
wget -O json_sample_file_1MB.json \
https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/
import requests
url = "https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/"
resp = requests.get(url)
with open("json_sample_file_1MB.json", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("json_sample_file_1MB.json", buf);
# Download and verify SHA256
curl -L -o json_sample_file_1MB.json https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/
echo "c503bbb92e3e48fafded236e62eb3b311433db4ae9a9ff08d20f001cd01782c1 json_sample_file_1MB.json" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/log/json/json_sample_file_1MB.json/").content
assert hashlib.sha256(data).hexdigest() == "c503bbb92e3e48fafded236e62eb3b311433db4ae9a9ff08d20f001cd01782c1"
More JSON files
Other JSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
json_sample_file_200KB.json |
201.4 KB | 1416394492fc67e3… |
Download |
json_sample_file_500KB.json |
507.8 KB | 3472105a4d8399a0… |
Download |
json_sample_file_50KB.json |
56.5 KB | f27996624ff23ab2… |
Download |
json_structured_events_sample.json |
1.0 KB | 61f85bd1b166c082… |
Download |
Learn more