Kronova API
Enterprise-grade APIs for asset intelligence, AI agents, blockchain tokenization, and private stablecoin deployment. Built for scale, security, and interoperability.
npm install @kronova-intelligent-systems/sdkyarn add @kronova-intelligent-systems/sdkpnpm add @kronova-intelligent-systems/sdkAPI Endpoints
Edge Functions
AI Tools
Uptime SLA
API Categories
Nine purpose-built API surfaces covering every layer of the Kronova platform.
Asset Intelligence
Manage assets with AI-powered insights and predictive analytics
/assets/assets/assets/{id}/assets/{id}+2 more
Embeddings & Search
Vector embeddings for semantic search and RAG applications
/embeddings/embeddings/embeddings/search/datasets+1 more
Asset Tokenization
Tokenize real-world assets on Sui and Canton blockchains
/tokenization/tokenization/tokenization/{id}/tokenization/fractionalizePrivate Stablecoins
Deploy and manage USDC-backed stablecoins on Canton Network
/stablecoins/stablecoins/stablecoins/{id}/mint/stablecoins/{id}/burn+1 more
AI Agents
Execute intelligent AI agents for autonomous operations
/agents/agents/{id}/agents/{id}/executeWorkflows
Orchestrate multi-step automated business processes
/workflows/workflows/{id}/workflows/{id}/executeReal-time Data Streams
Subscribe to live data feeds via Server-Sent Events
/data-streams/agents/data-streams/workflows/data-streams/iot-sensorsOAuth 2.1 / MCP
OAuth 2.1 with PKCE for secure third-party integrations
/oauth/authorize/oauth/token/oauth/clients/oauth/clientsVoice Interface
Voice-powered asset management with speech-to-text
/voice/sessions/voice/upload/voice/process/voice/synthesizeQuick Start
Get up and running in under 5 minutes.
import { createKronovaClient } from '@kronova-intelligent-systems/sdk'
// Initialize the client
const client = createKronovaClient({
apiKey: process.env.KRONOVA_API_KEY!,
})
// List your assets
const { data: assets } = await client.assets.list()
// Generate AI insights for an asset
const { data: insights } = await client.assets.generateInsights(assets[0].id)
// Semantic search across your knowledge base
const { data: results } = await client.embeddings.search(
'maintenance procedures for industrial equipment'
)
// Execute an AI agent
const { data: execution } = await client.agents.execute('agent_id', {
prompt: 'Analyze Q3 maintenance needs and provide recommendations',
asset_ids: assets.map(a => a.id),
})
console.log(execution.response)Ready to get started?
Create your API key and start building with Kronova today.