JSON sample file
json_sample_file_500KB.json
500.0 KB
application/json
SHA256 verified
File details
Filename
json_sample_file_500KB.jsonSize500.0 KB (512010 bytes)
MIME type
application/jsonExtension
.jsonSHA256
da4d5706a1d364fd19bbfcc9b6af07a3df0a84d712ffc072a7ccfc5853dec0d3Download commands
Use in scripts and tests
curl -L -o json_sample_file_500KB.json \
https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/
wget -O json_sample_file_500KB.json \
https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/
import requests
url = "https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/"
resp = requests.get(url)
with open("json_sample_file_500KB.json", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("json_sample_file_500KB.json", buf);
# Download and verify SHA256
curl -L -o json_sample_file_500KB.json https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/
echo "da4d5706a1d364fd19bbfcc9b6af07a3df0a84d712ffc072a7ccfc5853dec0d3 json_sample_file_500KB.json" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/code/json/json_sample_file_500KB.json/").content
assert hashlib.sha256(data).hexdigest() == "da4d5706a1d364fd19bbfcc9b6af07a3df0a84d712ffc072a7ccfc5853dec0d3"
More JSON files
Other JSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
json_sample_file_1MB.json |
1.0 MB | 4ae8e9510c22a8a6… |
Download |
json_sample_file_200KB.json |
200.0 KB | e435917c94c8012b… |
Download |
json_sample_file_50KB.json |
50.0 KB | 9abf9b457a62d2b3… |
Download |
Learn more