API Reference
Integrate ProBharath hardware directly into your own manufacturing stack. Built on REST and WebSockets.
REST API
Manage print jobs and retrieve hardware states asynchronously.
WebSocket Stream
Subscribe to sub-millisecond telemetry and active temperatures.
Create a Print Job
Pushes a sliced G-Code file directly to a target MK1 printer over the local network or cloud link.
POSThttps://api.probharath.com/v1/jobs
curl -X POST https://api.probharath.com/v1/jobs \
-H "Authorization: Bearer pb_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"printer_id": "mk1_factory_001",
"file_url": "s3://bucket/part.gcode",
"priority": "high",
"material": "PETG-CF"
}'Response
{
"id": "job_9x8f7d",
"status": "queued",
"estimated_time": 14500,
"created_at": 1718294400
}