Developers
The Moldulus API gives you access to specialized intelligence across every domain.
Install the Moldulus SDK, get an API key and start making requests in minutes.
import { Moldulus } from '@moldulus/sdk'
const client = new Moldulus({
apiKey: process.env.MOLDULUS_API_KEY
})
// Query any intelligence
const response = await client.intelligence.query({
domain: 'build',
message: 'What should I pay attention to in this plan?',
files: [planFile]
})
console.log(response.message)
// Build has identified three key elements...
// Multi-domain flow
const session = await client.sessions.create()
await session.query({
message: 'Evaluate this site for residential development',
files: [sitePhoto]
})
// Moldulus routes to Property intelligence
await session.query({
message: 'What could I build here?'
})
// Transitions to Build intelligence seamlessly/v1/intelligence/querySend a query to any Moldulus intelligence/v1/intelligence/build/analyzeAnalyze an uploaded plan or drawing/v1/conversations/{id}Retrieve a conversation and its context/v1/files/uploadUpload a file for use in intelligence queries