← Back to Compliance & GRC

Chain of Custody Manager

Digital evidence chain of custody

https://hub.toolweb.in/compliance/chain-of-custody/

Endpoints

GET /

Root

POST /api/custody/generate

Generate Custody Report

Request Body (JSON)

{
  "reportData": "<string>",
  "sessionId": "<string>",
  "userId": "<integer>",
  "timestamp": "<string>",
  "userEmail": "",
  "userName": ""
}
GET /api/custody/health

Health Check

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/compliance/chain-of-custody/
# Python
import requests
r = requests.get("https://hub.toolweb.in/compliance/chain-of-custody/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/compliance/chain-of-custody/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.