Format guide

Plain text

Readable key and value sections with no parser required.

text/plain; charset=utf-8

Published files

11 stable URLs

Open explorer
PathMedia typeSize
/v1/projects.txttext/plain; charset=utf-8488 B
/v1/projects/101.txttext/plain; charset=utf-8285 B
/v1/projects/102.txttext/plain; charset=utf-8202 B
/v1/tasks.txttext/plain; charset=utf-8481 B
/v1/tasks/1001.txttext/plain; charset=utf-8166 B
/v1/tasks/1002.txttext/plain; charset=utf-8143 B
/v1/tasks/1003.txttext/plain; charset=utf-8170 B
/v1/users.txttext/plain; charset=utf-81.2 KB
/v1/users/1.txttext/plain; charset=utf-8446 B
/v1/users/2.txttext/plain; charset=utf-8380 B
/v1/users/3.txttext/plain; charset=utf-8389 B

Validate the canonical shape with the dataset schema.

Use it

Request an asset

Browser

const response = await fetch("/v1/projects.txt");
const payload = await response.text();

curl

curl -fsS https://payloads.mochavi.com/v1/projects.txt

Python

from urllib.request import urlopen

with urlopen("https://payloads.mochavi.com/v1/projects.txt") as response:
    payload = response.read()