Developer Platform

Build With
Intelligence

The Ken360 API gives you programmatic access to every AI module — from real-time video analytics to IoT anomaly detection. REST, Python, or Node.js: pick your stack and start in minutes.

Explore the SDK Request API Key
3
SDK languages
50+
API endpoints
<2s
Avg response time
REST API # Authenticate and run a detection job
POST https://api.intelense.com/v1/analyze
Authorization: Bearer ILT_YOUR_API_KEY

{
"module": "kenvision",
"stream_url": "rtsp://cam01.example.com/live",
"detectors": ["object", "anomaly", "crowd"],
"confidence_threshold": 0.85
}

# Response
{
"job_id": "ilt_j_7f3a9c2d",
"status": "processing",
"webhook_url": "https://..."
}
SDKs & Interfaces

Three Ways to Integrate

Use the interface that fits your stack. All SDKs expose the full Ken360 feature set with type-safe, idiomatic wrappers.

REST API

Language-agnostic · JSON

A fully-documented OpenAPI 3.1 specification. Authenticate with API keys or OAuth 2.0. Every endpoint returns structured JSON with millisecond-precision timestamps.

curl -X POST https://api.intelense.com/v1/analyze
-H "Authorization: Bearer $ILT_KEY"
-d '{"module":"kensafety","stream_url":"..."}'
  • OpenAPI 3.1 spec & Postman collection
  • Webhook & polling support
  • Rate limit: 500 req/min (Growth)
Get API Key →

Python SDK

PyPI · v2.4.1
Popular

Async-first Python client with full type annotations. Works with FastAPI, Django, and plain scripts. Includes helper utilities for streaming, batching, and result pagination.

pip install intelense-sdk

from intelense import Ken360
client = Ken360(api_key="ILT_...")
result = client.kenvision.analyze(stream="rtsp://...")
  • Python 3.9+ · asyncio native
  • Pydantic models for all responses
  • Jupyter notebook examples included
Get Started →

Node.js SDK

npm · v2.3.0 · TypeScript

Full TypeScript typings, Promise-based API, and built-in retry logic. Ideal for integrating Ken360 alerts into your Node, Express, or Next.js backend.

npm install @intelense/sdk

import { Ken360 } from '@intelense/sdk';
const client = new Ken360({ apiKey: 'ILT_...' });
const job = await client.analyze({ module: 'keniot' });
  • TypeScript-first with full inference
  • Node 18+ · ESM & CJS exports
  • Built-in exponential backoff & retries
Get Started →
Quick Start

From Zero to Live Inference in 4 Steps

Most developers are sending real events to their application within 15 minutes of obtaining an API key.

1

Request an API Key

Sign up or contact our team to receive your API key. Trial keys are rate-limited but free — no credit card needed.

2

Install the SDK

Install your preferred SDK in seconds using pip or npm.

pip install intelense-sdk
3

Connect a Data Source

Point the SDK at an RTSP camera stream, a local video file, or any MQTT sensor feed. Or use our test stream URL for quick experiments.

4

Receive AI Events

Ken360 fires structured JSON events to your webhook, or you can poll the job endpoint. Handle detections, anomalies, and alerts in your own application logic.

Ken360 Dashboard

No-Code Monitoring Included

Every API plan includes access to the Ken360 Dashboard — a real-time web interface for monitoring jobs, reviewing detections, tuning thresholds, and managing API keys without writing a single line of code.

  • Live Event Feed
    See every detection, alert, and anomaly as it happens with full metadata and visual frame previews.
  • Multi-Module Overview
    All your Ken360 modules in one view — health status, throughput metrics, and alert summaries side by side.
  • Threshold & Rule Builder
    Tune confidence thresholds, define alert rules, and configure notification channels — all via a visual interface.
  • Audit & Export Logs
    Full event history with CSV and JSON export. Audit logs for compliance and post-incident review.
Ken360 Dashboard — Live Events
[14:32:07.042]DETECTkenvision · cam_03person · 0.97
[14:32:07.889]ALERTkensafety · zone_Aintrusion · 0.92
[14:32:09.114]DETECTkeniot · sensor_17anomaly · 0.88
[14:32:10.203]DETECTkenvision · cam_01vehicle · 0.95
[14:32:11.550]CRITICALkensafety · cam_07fire · 0.99
[14:32:12.018]DETECTkenagri · field_02stress · 0.81
Ready to Build?

Start Integrating Ken360 Today

Request your API key, install the SDK, and have AI events flowing into your application before lunch. Our developer support team is standing by.

Request API Key Explore Ken360 Platform