Developer API Access
Integrate the NETRA multi-modal deepfake detection engine directly into your own applications. Built for high-throughput, enterprise-scale verification.
Your API Keys
Test Key
sk_test_••••••••
Production Key
sk_live_1234abcd5678
Usage & Quotas
Current PlanFree Tier
Requests this month42 / 100
Quickstart Integration
Submit media for analysis using the /api/v1/public/analyze endpoint. Remember to include your API key in the X-API-Key header.
curl -X POST https://api.netra.example.com/v1/public/analyze \
-H "X-API-Key: sk_live_1234abcd5678" \
-H "Content-Type: multipart/form-data" \
-F "file=@/path/to/suspicious_video.mp4"Expected Response
{
"job_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"status": "queued",
"message": "Media successfully submitted for analysis."
}