Developer Platform
Build on Komodoe
Access the unified context layer. Build agents, integrations, and workflows that understand your users' entire digital lives.
import { Komodoe } from '@komodoe/sdk'
const komodoe = new Komodoe({
apiKey: process.env.KOMODOE_API_KEY
})
// Get insights across all connected apps
const insights = await komodoe.insights.list({
type: 'cost_saving',
minImpact: 1000
})
// Execute an action
await komodoe.actions.execute({
agentId: 'reconciliation',
action: 'match_transaction',
params: { transactionId: 'txn_123' }
})
// Create a custom ritual
await komodoe.rituals.create({
name: 'Weekly Finance Review',
schedule: 'every monday at 9am',
steps: [
{ agent: 'netsuite', action: 'generate_aging_report' },
{ agent: 'slack', action: 'send_summary', channel: '#finance' }
]
})Unified API
One API to access insights, actions, and context across all 50+ integrations.
API ReferenceReady to build?
Get API access, 10,000 free requests/month, and dedicated developer support.