Skip to content

A 10 MB JSON test file

100% Free No signup Instant download Browser-only 5 languages
Free download(10 MB)

json-10mb.json

File info

File Format JSON
File Size 10 MB(10,485,830 bytes)
MIME Type application/json
MD5 ad2fe9ead3841336493d45740106297d
SHA-1 d4b32d31374c3a5f64647ca61aff7d700808bfae
SHA-256 794596740b97ff4a6a64d873d8520b98aa9a6960079dcafee61ab9742b4d676c

Download via command line

curl
curl -O https://devlab.itlibra.com/files/json/json-10mb.json
wget
wget https://devlab.itlibra.com/files/json/json-10mb.json
PowerShell
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/json/json-10mb.json" -OutFile "json-10mb.json"

About this file

A 10 MB test file in JSON format, sized to exactly 10,485,830 bytes. Free to download with no signup, for verifying upload limits and file-handling behaviour.

The MD5, SHA-1 and SHA-256 values listed above are the real digests of this file. Recomputing them after download confirms the transfer was not corrupted, and they double as known-good expected values when testing a hashing library.

What this size means in practice

10 MB is one of the most common "round number" caps chosen for forms and CMS uploads. It is exactly 10,485,760 bytes (10 × 1024 × 1024), which also lets you detect whether an implementation computes MB with 1000 or with 1024.

An implementation using 1000 rejects anything past 10,000,000 bytes, so this file fails there. One using 1024 accepts it as exactly at the limit. To pin down the boundary precisely, combine it with the threshold set (9.9 MB / 10.0 MB / 10.1 MB).

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 8.4 seconds, and about 839 ms at 100 Mbps. Base64-encoded it grows to roughly 13,653 KB.

Treated as an array of records of roughly 180 bytes each including keys, this size holds about 58,255 records — enough to judge whether you can hold them all in memory or should switch to a streaming parser. It is a rough estimate; the real figure depends heavily on your structure.

What to check for this format

JSON is likewise plain text and is UTF-8 by specification. Syntactic validity cannot be judged without parsing the whole document, so the larger the file, the more the cost of "read everything just to validate" matters.

  • Whether large JSON goes through a streaming parser or is expanded into memory all at once
  • Whether nesting depth is capped — deeply nested JSON can exhaust a parser's stack
  • Whether large integers keep their precision — JavaScript numbers lose accuracy beyond 2^53

FAQ

Is this file free to use?
Yes — fully free and no signup required. Use it for any commercial or non-commercial test/verification purpose.
What is inside the file?
Dummy data generated for testing — sized to match the listed size exactly.
What are the hash values for?
Verify integrity after download or use them as test data for hashing libraries.