download & contribute
Everything submitted to peek-corpus is public. Submissions are open, no auth, no
account, no signup. The only requirement: your capture must include a non-null
meta.device_serial so we can dedupe and group per device.
submit a capture
Install peek-carthing, capture the JSON, POST it. Plain curl:
# on your host, after `adb pull` of /tmp/hwinfo.json
gzip -k hwinfo.json
curl -X POST https://peek.thinglabs.sh/v1/submit \
-H 'content-type: application/json' \
-H 'content-encoding: gzip' \
--data-binary @hwinfo.json.gz You’ll get back the capture id and a public URL to the raw JSON.
download the whole corpus
A rolling NDJSON dump (one capture per line, with the full peek payload inlined) is rebuilt every 6 hours.
Loading latest dump info…
query individual captures
GET /v1/stats # totals + panel triplets + kernel mix
GET /v1/captures # recent submissions
GET /v1/captures/:id # decoded slim fields
GET /v1/captures/:id.json # full raw peek payload