You can send an image and language for analysis via a POST request to this same URL (`index.php`) by adding the GET parameter `?api=true`. The request will wait for the analysis to complete and return the result as JSON.
Example using `curl`:
curl -X POST \
-F "api_image_file=@/path/to/your/image.jpg" \
-F "api_language=en" \
"https://itt.linux-edge.online/index.php?api=true"
Response Format (JSON): On success: `{ "status": "success", "prompt": "Analyzed text..." }` On error: `{ "status": "error", "message": "Error message..." }`