Multimodal vision audit
curl --request POST \
--url https://api.hoox.sh/agent/vision \
--header 'Content-Type: application/json' \
--data '
{
"imageBase64": "iVBORw0KGgoAAAANSUhEUgAA...",
"prompt": "Evaluate this chart for support and resistance."
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
imageBase64: 'iVBORw0KGgoAAAANSUhEUgAA...',
prompt: 'Evaluate this chart for support and resistance.'
})
};
fetch('https://api.hoox.sh/agent/vision', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/vision"
payload = {
"imageBase64": "iVBORw0KGgoAAAANSUhEUgAA...",
"prompt": "Evaluate this chart for support and resistance."
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"analysis": "<string>"
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}AI Agent
Multimodal vision audit
Internal endpoint proxied by the gateway to a vision-capable AI provider. Accepts a base64-encoded image (typically a chart screenshot) and an analysis prompt.
POST
/
agent
/
vision
Multimodal vision audit
curl --request POST \
--url https://api.hoox.sh/agent/vision \
--header 'Content-Type: application/json' \
--data '
{
"imageBase64": "iVBORw0KGgoAAAANSUhEUgAA...",
"prompt": "Evaluate this chart for support and resistance."
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
imageBase64: 'iVBORw0KGgoAAAANSUhEUgAA...',
prompt: 'Evaluate this chart for support and resistance.'
})
};
fetch('https://api.hoox.sh/agent/vision', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.hoox.sh/agent/vision"
payload = {
"imageBase64": "iVBORw0KGgoAAAANSUhEUgAA...",
"prompt": "Evaluate this chart for support and resistance."
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"analysis": "<string>"
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}{
"success": false,
"requestId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"error": "Invalid JSON payload structure."
}Last modified on June 17, 2026
⌘I