01
Create a preview
POST /v1/preview
{
"url": "https://example.com",
"width": 1440,
"height": 900
}
Public API
Preview, screenshot, PDF rendering and developer utility endpoints by TEXploder.
curl https://tex-api.com/v1/render/markdown/pdf \
-H "Content-Type: application/json" \
-d '{
"content": "# TEXploder report\n\nRender me.",
"filename": "report"
}'
Examples
POST /v1/preview
{
"url": "https://example.com",
"width": 1440,
"height": 900
}
POST /v1/utils/hash
{
"text": "hello",
"algorithms": [
"sha256",
"sha512"
]
}
POST /v1/render/pdf
{
"type": "html",
"content": "<h1>Hello TEX</h1>"
}
Endpoints
/v1/screenshot
Render a public URL or HTML snippet to PNG or PDF.
/v1/preview
Shortcut for a PNG preview.
/v1/render/pdf
Generate PDF from Markdown, HTML, LaTeX or limited XAML.
/v1/utils/{tool}
Hash, encode, decode, sign, diff, format and convert data.
/v1/tools
Read the developer utility catalog.
/v1/results/{file}
Download generated previews and PDFs.
Status