Large language models like OpenAI’s GPT-4 and Anthropic’s Claude produce Markdown natively, which means you can pipe their output straight into Blink PDF without any intermediate transformation step. This makes Blink PDF a natural fit for AI-powered document generation: your model writes the content, and you get a polished, shareable PDF in under 100ms.Documentation Index
Fetch the complete documentation index at: https://docs.blinkpdf.io/llms.txt
Use this file to discover all available pages before exploring further.
Why LLM Output Maps Perfectly to Blink PDF
LLMs are trained on Markdown-heavy corpora and default to it whenever they generate structured content — reports, summaries, analyses, and proposals all arrive pre-formatted with headings, bullet lists, bold text, and tables. Blink PDF’s/v1/render endpoint accepts that Markdown directly as a JSON string, so the integration is essentially zero-glue:
- Prompt your model to produce a Markdown document.
- Take
response.choices[0].message.content(or the Claude equivalent). - POST it to
/v1/render. - Receive a ready-to-use PDF binary.
Blink PDF operates with zero data retention — your Markdown and generated PDFs are never stored on our servers. This makes the pipeline safe for sensitive AI outputs such as legal summaries, financial analyses, and medical drafts.
Basic Pattern
Code Examples
Agentic Workflows
When you’re building autonomous agents that produce multiple documents across a workflow run, a few patterns help you stay efficient and within your rate limits.Async Batch Generation
If your agent produces several reports in one run, fire the render requests concurrently rather than sequentially. At Pro plan (120 req/min) you can sustain roughly two renders per second without hitting limits. See the Batch Processing guide for a full async example.Prompt Engineering for Clean PDFs
Guide the model to produce render-ready Markdown by adding explicit instructions in your system prompt:Streaming + Buffering
If you use OpenAI’s streaming API to display content progressively in a UI, buffer the full completion before sending it to/v1/render. Blink PDF requires the complete Markdown document in a single request.
Connecting to Notion, Obsidian, and Tiptap
Blink PDF integrates well with editor-based AI workflows:- Notion AI — Export Notion page content as Markdown via the Notion API, then render with Blink PDF to produce a shareable PDF snapshot.
- Obsidian — Use the Obsidian Local REST API plugin or a community plugin to pipe vault notes to
/v1/renderon demand. - Tiptap — Convert Tiptap’s JSON document model to Markdown using
@tiptap/extension-markdown, then pass the string directly to Blink PDF.
Plan Considerations
| Plan | Rate Limit | Best For |
|---|---|---|
| Free | 5/min | Prototyping LLM-to-PDF pipelines |
| Starter ($12/mo) | 30/min | Side projects, low-volume agents |
| Pro ($39/mo) | 120/min | Production AI apps, daily reporting |
| Business ($149/mo) | 600/min | High-frequency agentic workflows |
| Scale ($999/mo) | ~5,000/min | Enterprise AI document platforms |
All plans include zero-retention processing. No Markdown content or rendered PDFs are stored on Blink PDF infrastructure at any tier.