Turn any URL or HTML
into a production PDF.

Batch conversion, configurable output, credit-based billing. Two API calls and you're done.

# Convert a URL to PDF in two requests
curl -X POST https://docuqueue.com/api/v1/convert \
  -H "api-key: wp2_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"urls": ["https://example.com"]}'

# {"job_id": "a1b2c3d4", "status": "queued"}

curl https://docuqueue.com/api/v1/download/a1b2c3d4 \
  -H "api-key: wp2_your_key_here" -o output.pdf
Three steps. No SDK required.
1

Register

Sign up with your email. Get 50 free credits instantly. No credit card required.

2

Send a request

POST URLs or raw HTML to the API. Each request consumes 1 credit regardless of URL count.

3

Download your PDF

Your PDFs are processed in the background. Check status, then download when ready.

Built for developers who ship.
📄

URL to PDF

Submit 1–10 URLs in a single request. Each page is converted and merged into one clean PDF.

</>

HTML to PDF

Paste raw HTML up to 500KB. Get pixel-perfect PDF output matching your markup exactly.

Batch Processing

Send multiple URLs at once. Everything is handled automatically — just submit and download.

💰

Credit Billing

Pay only for what you use. Free tier included. Upgrade, downgrade, or cancel anytime.

Configurable Output

Set page format, margins, orientation, scale, and background rendering per request.

🔒

Simple Auth

One API key per account. Register with your email and start converting in seconds.

Drop-in code for your stack.
# Step 1: Submit URLs
curl -X POST https://docuqueue.com/api/v1/convert \
  -H "api-key: wp2_your_key" \
  -H "Content-Type: application/json" \
  -d '{"urls": ["https://example.com"]}'

# Step 2: Check status
curl https://docuqueue.com/api/v1/status/{job_id} \
  -H "api-key: wp2_your_key"

# Step 3: Download PDF
curl -o output.pdf https://docuqueue.com/api/v1/download/{job_id} \
  -H "api-key: wp2_your_key"
import requests

API_KEY = "wp2_your_key"
BASE = "https://docuqueue.com/api/v1"
HEADERS = {"api-key": API_KEY, "Content-Type": "application/json"}

# Submit
r = requests.post(f"{BASE}/convert", headers=HEADERS,
    json={"urls": ["https://example.com"]})
job_id = r.json()["job_id"]

# Poll until done
while True:
    status = requests.get(f"{BASE}/status/{job_id}",
        headers=HEADERS).json()
    if status["status"] == "completed":
        break

# Download
pdf = requests.get(f"{BASE}/download/{job_id}",
    headers=HEADERS)
open("output.pdf", "wb").write(pdf.content)
const API_KEY = "wp2_your_key";
const BASE = "https://docuqueue.com/api/v1";
const headers = {"api-key": API_KEY, "Content-Type": "application/json"};

// Submit
const res = await fetch(`${BASE}/convert`, {
  method: "POST", headers,
  body: JSON.stringify({urls: ["https://example.com"]})
});
const {job_id} = await res.json();

// Poll
let status;
do {
  status = await fetch(`${BASE}/status/${job_id}`, {headers});
} while (status.status !== "completed");

// Download
const pdf = await fetch(`${BASE}/download/${job_id}`, {headers});
const buf = await pdf.arrayBuffer();
writeFileSync("output.pdf", Buffer.from(buf));
Simple plans. No surprises.

Free

$0/mo
50 credits · 5 req/min
  • Up to 3 URLs per request
  • HTML to PDF
  • Standard output
  • Community support
Get Started

Starter

$9/mo
500 credits · 20 req/min
  • Up to 5 URLs per request
  • HTML to PDF
  • Standard output
  • Email support
Get Started

Business

$99/mo
10,000 credits · 100 req/min
  • Up to 10 URLs per request
  • HTML to PDF
  • Priority output
  • Dedicated support
Get Started
Common questions.

What counts as 1 credit?

Each successful conversion request consumes 1 credit, regardless of how many URLs are included. Failed requests do not consume credits.

Is there a free plan?

Yes. The Free plan gives you 50 credits per month with no credit card required. Upgrade anytime.

Do failed requests get refunded?

Yes. Credits are pre-deducted but refunded if the conversion fails due to an error on our end.

Can I change plans?

Yes. Upgrades take effect immediately with a prorated charge. Downgrades take effect at the start of your next billing cycle.

What payment methods are accepted?

We accept credit/debit cards (Visa, Mastercard) via Stripe.

Is there a free trial for paid plans?

The Free plan is available indefinitely. You can upgrade to a paid plan at any time.