Velocity Print quickstart
Connect and print in three clear steps.
Install Velocity Agent beside the printer, create an API key, then send a PDF or RAW job through the first-party API.
Velocity Agent
Install beside your printer
Velocity Agent discovers operating-system print queues and keeps an outbound encrypted connection to Velocity Print. No inbound firewall rule is required.
Install Velocity AgentAuthorization
Create a scoped API key
API keys belong to one workspace. Store the key in your application’s secret manager and never expose it in browser code.
Open API keysFirst print
Submit a PDF job
Send authenticated requests to https://api.print.velocitypulse.io. Use the printer identifier shown in the dashboard.
curl https://api.print.velocitypulse.io/printjobs \
-u "$VELOCITY_PRINT_API_KEY:" \
-H "content-type: application/json" \
-d '{
"printerId": 53731,
"title": "Packing slip",
"contentType": "pdf_uri",
"content": "https://example.com/packing-slip.pdf",
"source": "Warehouse"
}'Send from the dashboard