Integrate Beway Labs into your existing systems with our comprehensive API.
Generate an API key from your dashboard settings.
Choose your preferred language and install the SDK.
npm install @bewaylabs/sdkpip install bewaylabsStart deploying workflows and agents programmatically.
import { BewayLabs } from '@bewaylabs/sdk';
const client = new BewayLabs({
apiKey: process.env.BEWAY_API_KEY
});
const workflow = await client.workflows.create({
name: "Sales Follow-up",
trigger: "new_lead",
actions: ["classify", "respond"]
});from bewaylabs import BewayLabs
client = BewayLabs(api_key="your_api_key")
workflow = client.workflows.create(
name="Sales Follow-up",
trigger="new_lead",
actions=["classify", "respond"]
)/v1/workflowsDeploy a new AI workflow to your account
/v1/workflows/{id}Retrieve workflow details and status
/v1/agentsLaunch a new autonomous AI agent
/v1/agents/{id}/metricsMonitor agent performance and activity
Our team can help you set up the perfect integration for your needs.