URL-Based Remote Media Analysis
Analyzes images, videos, audio, or documents directly from a URL using AI-ForensiX unified media intelligence engine.
The URL-Based Remote Media Analysis API allows you to analyze media files-images, videos, audio, or documents-without uploading them.
Simply provide a publicly accessible URL, and AI-ForensiX engine will fetch and process the media.
🛠️ Endpoint
POST /v1/url/analyzeRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Publicly accessible media URL. |
Example Request (cURL)
curl -X POST "https://forensiz.ai/analyze" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/sample.jpg"
}'Response Status Codes
| Status Code | Meaning |
|---|---|
| 200 OK | Media retrieved and processed successfully. |
| 400 Bad Request | Missing or invalid URL. |
| 401 Unauthorized | Invalid or missing API key. |
| 403 Forbidden | Media access not allowed. |
| 404 Not Found | URL not reachable or media missing. |
| 500 Internal Server Error | Unexpected server failure. |