Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Usa URLs firmadas de Supabase como entrada.
/convert/from-url
const { data, error } = await supabase.storage .from("documents") .createSignedUrl("user-123/informe.pdf", 60); if (error) throw error; const md = await fetch("https://api.markpdf.tech/convert/from-url", { method: "POST", headers: { "x-api-key": process.env.FLASH_MD_API_KEY!, "content-type": "application/json" }, body: JSON.stringify({ url: data.signedUrl, filename: "informe.pdf", mode: "fast" }) }).then((r) => r.text());