Fulfillment

Packing slip generator API for warehouses and ecommerce backends

Send company, recipient, line items, carrier, and tracking as JSON. ForgeDocs returns a print-ready packing slip PDF through the same REST and MCP path your stack uses for invoices and HTML to PDF.

Built for fulfillment data you already have

The packing-slip pack expects SKUs, quantities, ship-to blocks, carrier, and tracking — the fields WMS and Shopify-style backends already store. You get clean warehouse typography without designing a slip in a canvas editor.

REST and MCP in one pipeline

Call POST /api/v1/render with template: "packing-slip", or use the generate_packing_slip MCP tool from Cursor and Claude. Pair with invoice and quote packs when you need the full order document set.

Fits pick-pack automation

Any Zapier, Make, or n8n step that can POST JSON can call the packing slip generator when an order ships. Use async jobs when you batch morning pick lists.

curl · packing slip PDF
curl -X POST https://pdfforagents.com/api/v1/render \
  -H "Content-Type: application/json" \
  -d '{
    "template": "packing-slip",
    "format": "pdf",
    "data": {
      "companyName": "Acme Labs Fulfillment",
      "recipientName": "Northwind Co — Receiving",
      "orderNumber": "ORD-77821",
      "carrier": "UPS Ground",
      "trackingNumber": "1Z999AA10123456784",
      "items": [
        { "sku": "WDG-100", "description": "Widget Pro", "qty": 4 }
      ]
    }
  }' \
  --output packing-slip.pdf

Common questions

How does the packing slip generator work?+

Send JSON for the packing-slip pack. ForgeDocs merges your data into the template and returns a PDF via Chromium — the same path used by MCP generate_packing_slip.

Can agents create packing slips without a WMS UI?+

Yes. Agents fill structured fulfillment fields; ForgeDocs owns layout and print typography.

What does Starter cost?+

Starter is $8.99/mo after a 7-day free trial, with thousands of renders per month for packs and custom HTML.

Ready to generate documents from your stack?

Starter is $8.99/mo after a 7-day free trial. Use the playground locally, or wire MCP / REST when you're ready to ship.