Developers

API Reference

Interactive API documentation with live testing. Base URL: https://api.immutis.com/v1

Endpoints

Capture Evidence

Create a new evidence capture with hardware attestation

Parameters

type(string)required

Type: photo, video, file, or document

location(boolean)

Include GPS location

timestamp(boolean)

Include server timestamp

metadata(object)

Custom metadata key-value pairs

Example Request

JSON
{
  "type": "photo",
  "location": true,
  "timestamp": true,
  "metadata": {
    "user_id": "usr_123",
    "claim_id": "clm_456"
  }
}

Example Response

JSON
{
  "id": "ev_abc123",
  "hash": "sha256:abc123...",
  "type": "photo",
  "created_at": "2026-04-23T10:30:00Z",
  "attestation": {
    "device_id": "dev_xyz",
    "hardware_signature": "sig_...",
    "verified": true
  }
}

API Playground

POSThttps://api.immutis.com/v1/evidence/capture