JSON sample file
json_sample_file_500KB.json
507.8 KB
application/json
SHA256 verified
File details
Filename
json_sample_file_500KB.jsonSize507.8 KB (519998 bytes)
MIME type
application/jsonExtension
.jsonSHA256
3472105a4d8399a0f457c371d96d97adba2259b21d0dd8a2d1e0d0eda3155e14Download commands
Use in scripts and tests
curl -L -o json_sample_file_500KB.json \
https://samplefile.com/samples/download/log/json/json_sample_file_500KB.json/
wget -O json_sample_file_500KB.json \
https://samplefile.com/samples/download/log/json/json_sample_file_500KB.json/
import requests
url = "https://samplefile.com/samples/download/log/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/log/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/log/json/json_sample_file_500KB.json/
echo "3472105a4d8399a0f457c371d96d97adba2259b21d0dd8a2d1e0d0eda3155e14 json_sample_file_500KB.json" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/log/json/json_sample_file_500KB.json/").content
assert hashlib.sha256(data).hexdigest() == "3472105a4d8399a0f457c371d96d97adba2259b21d0dd8a2d1e0d0eda3155e14"
More JSON files
Other JSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
json_sample_file_1MB.json |
1.0 MB | c503bbb92e3e48fa… |
Download |
json_sample_file_200KB.json |
201.4 KB | 1416394492fc67e3… |
Download |
json_sample_file_50KB.json |
56.5 KB | f27996624ff23ab2… |
Download |
json_structured_events_sample.json |
1.0 KB | 61f85bd1b166c082… |
Download |
Learn more