ArcGen
For developers

The creative API and operating system for AI agents.

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.

Python SDK workflow.run()
workflow = client.workflows.run(
  slug="campaign-localizer",
  input={
    "brand_profile": "core",
    "assets": urls,
    "markets": ["en", "de", "fr"]
  }
)

client.webhooks.subscribe(
  topic="workflow.completed"
)
ArcGen developer workflow

Execution primitives for serious builders

Title

Copy

Title

Copy

Title

Copy

Developer workflows enabled by ArcGen

Title

Copy

Title

Copy

Title

Copy

One visual system, many programmatic entry points

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)