Developers

SDK

Official SDKs for Python, Node.js, Go, and Java.

Updated 2026-07-19

SDKs wrap the REST API with typed models, retries, and pagination helpers. All SDKs support API keys and OAuth client credentials.

from astraops import Zynvora

client = Zynvora(api_key=os.environ["ZYNVORA_API_KEY"])
run = client.jobs.trigger(project_id="...", pipeline="orders_daily")
print(run.id, run.status)
import { Zynvora } from "@astraops/sdk";

const client = new Zynvora({ apiKey: process.env.ZYNVORA_API_KEY! });
const run = await client.jobs.trigger({
  projectId: "...",
  pipeline: "orders_daily",
});

Need help?

Talk to Support or book an enterprise workshop with Solutions Engineering.