Use the Libretto Cloud HTTP API to create accounts, manage deployments, run workflows, and inspect results.
https://api.libretto.sh.POST requests.x-api-key: <api-key>Content-Type: application/json{ "json": { ... } }12345678curl -X POST "https://api.libretto.sh/v1/jobs/get" \ -H "x-api-key: $LIBRETTO_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "json": { "id": "<job-id>" } }'
POST /v1/auth/* routes are public and do not require x-api-key.POST /v1/* routes require x-api-key./v1/* routes exposed by Libretto Cloud in this checkout. Billing is managed through the plans flow and does not currently expose public /v1/billing/* routes here.