Smart City Industry KINEVA® AI IronLink Hardware Developers API Open Source Store
API

KINEVA Inference API

Production-ready REST API for all KINEVA models. One call is enough. Free tier included.

1. Send image

URL or Base64. Any image format.

2. KINEVA analyzes

CNN, PCNN, or VLLM. Choose model or automatic.

3. JSON back

Bounding boxes, classes, confidence. Structured and immediately usable.

# Detect objects in an image
curl -X POST https://api.kineva.eu/v1/detect \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "vehicle-detection-v3",
    "image": "https://example.com/street.jpg",
    "confidence_threshold": 0.5
  }'
// Response
{
  "model": "vehicle-detection-v3",
  "detections": [
    {
      "class": "car",
      "confidence": 0.97,
      "bbox": [120, 340, 480, 560]
    }
  ],
  "inference_time_ms": 42
}
Open Source

Open Weights

Download select KINEVA models for free. Run on your own infrastructure, fine-tune with your data, deploy at the edge.

Head / Person Detection

Open Source

Accurate head and person counting in crowded scenes. Works from any camera angle.

CNNPeople Analytics

License Plate Detection

Open Source

Detects license plates in real-time. GDPR-compliant anonymisation mode included.

CNNPrivacy

Car / Truck Detection

Open Source

Detects and classifies passenger cars and commercial trucks for traffic monitoring.

CNNSmart City

COCO 80-Class

Open Source

General-purpose 80-class baseline for rapid prototyping and transfer learning.

CNNGeneral Purpose

Traffic Sign Recognition

Open Source

Road sign detection with GPS-tagged geolocation for infrastructure monitoring.

CNNInfrastructure

Face Anonymisation

Open Source

Head-based face anonymisation. GDPR-compliant, on-device processing.

CNNPrivacy

Vehicle Detection & Classification

Open Source

PCNN model with WiFi probe and GPS fusion. Deployed across 60+ cities.

PCNNSmart City
# Install from Hugging Face
pip install huggingface_hub

# Download a model
from huggingface_hub import hf_hub_download

model_path = hf_hub_download(
    repo_id="rebotnix/kineva-head-detection-v3",
    filename="model.onnx"
)

# Run inference
import onnxruntime as ort

session = ort.InferenceSession(model_path)
results = session.run(None, {"input": image_tensor})

Ready to build?

API access or commercial model license. We respond within 24 hours.