n8n
There's no dedicated official app yet for no-code automation (n8n, as well as Zapier/Make via their generic HTTP modules) — but you don't need one: plain REST + webhooks is already enough.
Reading orders — HTTP Request node
Method: GET
URL: https://3dprintpricing.pro/api/print-jobs
Authentication: Header Auth
Header name: Authorization
Header value: Bearer pat_xxxxxxxxxxxxxxxxxxxxxxxxReceiving events — Webhook node + signature check
Create a Webhook trigger in n8n, paste its URL as a channel with the “3D Print Pricing / HA” format in the settings. Then use a Code node to verify the request body’s signature (see the pseudocode on the Webhooks page) — n8n gives full access to the headers and raw body of the incoming webhook.