Developer Documentation
Everything you need to integrate and build with Prilix Labs
Getting Started
API Reference
Integrations
Code Examples
JavaScript
// Initialize Prilix SDK
import { Prilix } from '@prilix/sdk';
const prilix = new Prilix({
apiKey: 'your-api-key',
environment: 'production'
});
// Create a workflow
const workflow = await prilix.workflows.create({
name: 'My Workflow',
steps: [
{
type: 'trigger',
config: { event: 'user.created' }
},
{
type: 'action',
config: { action: 'send.email' }
}
]
});Python
# Initialize Prilix SDK
from prilix import Prilix
client = Prilix(api_key='your-api-key')
# Create a workflow
workflow = client.workflows.create(
name='My Workflow',
steps=[
{
'type': 'trigger',
'config': {'event': 'user.created'}
},
{
'type': 'action',
'config': {'action': 'send.email'}
}
]
)API Status
All Systems Operational
API Response Time
45ms
Uptime (30 days)
99.99%
Requests Today
2.4M
Need More Help?
Join our developer community or contact our support team.