Format guide

HTML

A readable table that opens directly in a browser.

text/html; charset=utf-8

Published files

11 stable URLs

Open explorer
PathMedia typeSize
/v1/projects.htmltext/html; charset=utf-81000 B
/v1/projects/101.htmltext/html; charset=utf-8806 B
/v1/projects/102.htmltext/html; charset=utf-8693 B
/v1/tasks.htmltext/html; charset=utf-8907 B
/v1/tasks/1001.htmltext/html; charset=utf-8602 B
/v1/tasks/1002.htmltext/html; charset=utf-8559 B
/v1/tasks/1003.htmltext/html; charset=utf-8586 B
/v1/users.htmltext/html; charset=utf-81.7 KB
/v1/users/1.htmltext/html; charset=utf-81.1 KB
/v1/users/2.htmltext/html; charset=utf-81015 B
/v1/users/3.htmltext/html; charset=utf-81.0 KB

Validate the canonical shape with the dataset schema.

Use it

Request an asset

Browser

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

curl

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

Python

from urllib.request import urlopen

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