Format guide
NDJSON
One JSON record per line for streams and line-oriented tools.
application/x-ndjson; charset=utf-8
Published files
11 stable URLs
| Path | Media type | Size |
|---|---|---|
/v1/projects.ndjson | application/x-ndjson; charset=utf-8 | 503 B |
/v1/projects/101.ndjson | application/x-ndjson; charset=utf-8 | 294 B |
/v1/projects/102.ndjson | application/x-ndjson; charset=utf-8 | 209 B |
/v1/tasks.ndjson | application/x-ndjson; charset=utf-8 | 485 B |
/v1/tasks/1001.ndjson | application/x-ndjson; charset=utf-8 | 170 B |
/v1/tasks/1002.ndjson | application/x-ndjson; charset=utf-8 | 143 B |
/v1/tasks/1003.ndjson | application/x-ndjson; charset=utf-8 | 172 B |
/v1/users.ndjson | application/x-ndjson; charset=utf-8 | 1.2 KB |
/v1/users/1.ndjson | application/x-ndjson; charset=utf-8 | 438 B |
/v1/users/2.ndjson | application/x-ndjson; charset=utf-8 | 371 B |
/v1/users/3.ndjson | application/x-ndjson; charset=utf-8 | 378 B |
Validate the canonical shape with the dataset schema.
Use it
Request an asset
Browser
const response = await fetch("/v1/projects.ndjson");
const payload = await response.text();curl
curl -fsS https://payloads.mochavi.com/v1/projects.ndjsonPython
from urllib.request import urlopen
with urlopen("https://payloads.mochavi.com/v1/projects.ndjson") as response:
payload = response.read()