Kronova
v2.0 API
REST + SSE + WebSocket

Kronova API

Enterprise-grade APIs for asset intelligence, AI agents, blockchain tokenization, and private stablecoin deployment. Built for scale, security, and interoperability.

Quick Install
npm
npm install @kronova-intelligent-systems/sdk
yarn
yarn add @kronova-intelligent-systems/sdk
pnpm
pnpm add @kronova-intelligent-systems/sdk
28+

API Endpoints

9

Edge Functions

18

AI Tools

99.9%

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

GET
/assets
POST
/assets
GET
/assets/{id}
PATCH
/assets/{id}

+2 more

View Documentation

Embeddings & Search

Vector embeddings for semantic search and RAG applications

GET
/embeddings
POST
/embeddings
POST
/embeddings/search
GET
/datasets

+1 more

View Documentation

Asset Tokenization

Tokenize real-world assets on Sui and Canton blockchains

GET
/tokenization
POST
/tokenization
GET
/tokenization/{id}
POST
/tokenization/fractionalize
View Documentation

Private Stablecoins

Deploy and manage USDC-backed stablecoins on Canton Network

GET
/stablecoins
POST
/stablecoins
POST
/stablecoins/{id}/mint
POST
/stablecoins/{id}/burn

+1 more

View Documentation

AI Agents

Execute intelligent AI agents for autonomous operations

GET
/agents
GET
/agents/{id}
POST
/agents/{id}/execute
View Documentation

Workflows

Orchestrate multi-step automated business processes

GET
/workflows
GET
/workflows/{id}
POST
/workflows/{id}/execute
View Documentation

Real-time Data Streams

Subscribe to live data feeds via Server-Sent Events

GET
/data-streams/agents
GET
/data-streams/workflows
GET
/data-streams/iot-sensors
View Documentation

OAuth 2.1 / MCP

OAuth 2.1 with PKCE for secure third-party integrations

GET
/oauth/authorize
POST
/oauth/token
GET
/oauth/clients
POST
/oauth/clients
View Documentation

Voice Interface

Voice-powered asset management with speech-to-text

POST
/voice/sessions
POST
/voice/upload
POST
/voice/process
POST
/voice/synthesize
View Documentation

Quick Start

Get up and running in under 5 minutes.

quick-start.ts
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.

API Documentation | Kronova Platform | Kronova