← All Connectors
Verkada

Verkada

verkada

Cloud-managed cameras with built-in people analytics. Zone-based occupancy from computer vision plus environmental sensor data (temperature, humidity, air quality).

Configuration schema

FieldTypeRequiredDescription
api_keystringYesVerkada API key from Command > Admin > API Keys.
org_idstringYesVerkada organization ID from the Command dashboard.

Setup instructions

1

Log into Verkada Command.

2

Navigate to Admin > Integrations > API Keys.

3

Create a new API key with Analytics read permissions.

4

Note your Organization ID from the Command dashboard URL.

5

Register the integration via POST /api/venues/:id/integrations with connector_type "verkada".

Webhook / polling format

verkada-webhook.json
// Verkada uses polling via REST API
// The connector calls these endpoints:
// GET /cameras/analytics/occupancy   — zone occupancy
// GET /sensors/data                  — environmental readings
// GET /cameras/analytics/crowd       — crowd density

Normalized canonical event

After normalization, the connector output becomes a standard GNCanonicalEvent:

canonical-event.json
{
  "event_type": "device_connected",
  "venue_id": "v_pqr678",
  "zone_id": "z_lobby",
  "device_hash": "verkada_analytics_001",
  "timestamp": "2026-03-15T20:00:00.000Z",
  "connector_type": "verkada",
  "metadata": {
    "occupancy_count": 23,
    "zone_name": "Main Lobby",
    "temperature_c": 22.1,
    "humidity_pct": 45
  }
}

Next steps