Title
Copy
Stop hardcoding individual model APIs and glue code. Use ArcGen as your execution layer: build workflows visually or programmatically, then trigger them from your apps, services, or autonomous agents.
workflow = client.workflows.run(
slug="campaign-localizer",
input={
"brand_profile": "core",
"assets": urls,
"markets": ["en", "de", "fr"]
}
)
client.webhooks.subscribe(
topic="workflow.completed"
)
Copy
Copy
Copy
Copy
Copy
Copy
Use SDKs, webhooks, the chat/agent endpoint, and MCP-aware interfaces to discover, build, and execute workflows as part of larger software systems.
POST /v1/chat/agent
POST /v1/workflows/run
GET /v1/workflows/registry
POST /v1/webhooks/test
agent.discover("brand-safe-image-pipeline")
agent.quote(workflow="brand-safe-image-pipeline")
agent.execute(input=payload)