Compila LaTeX a PDF
via API

Envia codigo LaTeX, recibe PDFs perfectos. Sin instalar nada. API REST simple con autenticacion por API key.

10 compilaciones gratis por dia. Sin tarjeta de credito.

Como Funciona

1

Registrate

Crea tu cuenta y obtiene una API key en segundos.

2

Envia LaTeX

Haz un POST con tu codigo LaTeX al endpoint /compile.

3

Recibe PDF

Obtiene tu PDF, PNG o SVG compilado en segundos.

Facil de Integrar

curl -X POST https://your-domain.com/api/v1/compile \
  -H "X-API-Key: ltx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "latex_source": "\\documentclass{article}\\begin{document}Hello!\\end{document}",
    "compiler": "pdflatex",
    "output_format": "pdf"
  }' \
  --output document.pdf
import requests

response = requests.post(
    "https://your-domain.com/api/v1/compile",
    headers={"X-API-Key": "ltx_your_key_here"},
    json={
        "latex_source": r"\documentclass{article}\begin{document}Hello!\end{document}",
        "compiler": "pdflatex",
        "output_format": "pdf"
    }
)

with open("document.pdf", "wb") as f:
    f.write(response.content)
const response = await fetch("https://your-domain.com/api/v1/compile", {
    method: "POST",
    headers: {
        "X-API-Key": "ltx_your_key_here",
        "Content-Type": "application/json"
    },
    body: JSON.stringify({
        latex_source: "\\documentclass{article}\\begin{document}Hello!\\end{document}",
        compiler: "pdflatex",
        output_format: "pdf"
    })
});

const blob = await response.blob();
// Use the PDF blob...

Planes y Precios

Empieza gratis, escala cuando lo necesites.

Free

$0 /mes
  • 10 compilaciones/dia
  • Todos los compiladores
  • PDF, PNG, SVG
Empezar Gratis
POPULAR

Pro

$9 /mes
  • 100 compilaciones/dia
  • Todos los compiladores
  • PDF, PNG, SVG
  • Soporte por email
Elegir Pro

Enterprise

$49 /mes
  • 10,000 compilaciones/dia
  • Todos los compiladores
  • PDF, PNG, SVG
  • Soporte dedicado
Elegir Enterprise