DocRaptor website screenshot

DocRaptor

DocRaptor is an HTML-to-PDF / HTML-to-Excel document generation API powered by Prince XML. Strong CSS-paged-media support including headers/footers, page breaks, watermarks, accessibility tags. Synchronous and asynchronous document creation; status polling; document hosting.

1 APIs 0 Features
Document GenerationPDFHTMLExcelAPIPrince

APIs

DocRaptor REST API

REST API for generating PDF, XLS, XLSX from HTML/CSS or URL. HTTP Basic auth using API key as username. Sync POST /docs and async POST /async_docs with status polling. Test docu...

Collections

Pricing Plans

Docraptor Plans Pricing

9 plans

PLANS

Rate Limits

Docraptor Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
👥
GitHub
GitHub
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: DocRaptor API
  version: '1.0'
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: Documents
    type: folder
  items:
  - info:
      name: Create a document synchronously
      type: http
    http:
      method: POST
      url: https://api.docraptor.com/docs
      body:
        type: json
        data: '{}'
    docs: Generate a PDF, XLS, or XLSX document immediately and return the binary content. Test documents are unlimited and
      free but watermarked.
  - info:
      name: Retrieve a previously generated document
      type: http
    http:
      method: GET
      url: https://api.docraptor.com/docs/:document_id
      params:
      - name: document_id
        value: ''
        type: path
    docs: Retrieve a previously generated document
- info:
    name: Async Documents
    type: folder
  items:
  - info:
      name: Create a document asynchronously
      type: http
    http:
      method: POST
      url: https://api.docraptor.com/async_docs
      body:
        type: json
        data: '{}'
    docs: Initiates asynchronous document generation; returns a status URL.
  - info:
      name: Get async document status
      type: http
    http:
      method: GET
      url: https://api.docraptor.com/async_docs/:document_id
      params:
      - name: document_id
        value: ''
        type: path
    docs: Get async document status
bundled: true