Standby

API Documentation

Integrate Privion's powerful video analysis into your own applications.

Endpoint
Submit a video for processing.
POST
/api/process
Request Body
A JSON object containing the URL of the video to process.
{
  "videoUrl": "https://path.to/your/video.mp4"
}
Success Response (200)
Returns a JSON object with the analysis results.
{
  "jobId": "job_...",
  "status": "completed",
  "submittedUrl": "https://path.to/your/video.mp4",
  "analysis": {
    "objectsDetected": 4,
    "facesBlurred": 2,
    "textRedacted": 1,
    "confidence": 91
  },
  "detections": [
    {
      "type": "person",
      "confidence": 0.98,
      "bbox": [150, 100, 200, 300],
      "status": "blurred"
    },
    // ... more detections
  ]
}
API Simulator
Test the API endpoint in real-time.