Available Actions
analyzeocrdetectdescribe
Input Schema
{
"type": "object",
"required": [
"image_url"
],
"properties": {
"prompt": {
"type": "string"
},
"image_url": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"text": {
"type": "string"
},
"labels": {
"type": "array"
},
"description": {
"type": "string"
}
}
}Quick Start
API Endpoint
POST /api/execute/vision-aicURL Example
curl -X POST \
https://api.nulayers.com/execute/vision-ai \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "analyze"}'