Format guide

CSV

Flat rows for spreadsheets, data tools and simple imports.

text/csv; charset=utf-8

Published files

11 stable URLs

Open explorer
PathMedia typeSize
/v1/projects.csvtext/csv; charset=utf-8366 B
/v1/projects/101.csvtext/csv; charset=utf-8270 B
/v1/projects/102.csvtext/csv; charset=utf-8177 B
/v1/tasks.csvtext/csv; charset=utf-8295 B
/v1/tasks/1001.csvtext/csv; charset=utf-8158 B
/v1/tasks/1002.csvtext/csv; charset=utf-8117 B
/v1/tasks/1003.csvtext/csv; charset=utf-8156 B
/v1/users.csvtext/csv; charset=utf-8741 B
/v1/users/1.csvtext/csv; charset=utf-8424 B
/v1/users/2.csvtext/csv; charset=utf-8361 B
/v1/users/3.csvtext/csv; charset=utf-8368 B

Validate the canonical shape with the dataset schema.

Use it

Request an asset

Browser

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

curl

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

Python

from urllib.request import urlopen

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