Format guide
A deterministic one-page document for file handling tests.
application/pdf
Published files
1 stable URL
| Path | Media type | Size |
|---|---|---|
/v1/files/pdf/dataset-summary.pdf | application/pdf | 680 B |
Validate the canonical shape with the dataset schema.
Use it
Request an asset
Browser
const response = await fetch("/v1/files/pdf/dataset-summary.pdf");
const payload = await response.arrayBuffer();curl
curl -fsS https://payloads.mochavi.com/v1/files/pdf/dataset-summary.pdfPython
from urllib.request import urlopen
with urlopen("https://payloads.mochavi.com/v1/files/pdf/dataset-summary.pdf") as response:
payload = response.read()