Back to Tools

Vision AI

AI

Analyze images using GPT-4 Vision, Claude Vision, or Google Cloud Vision. Extract text, objects, faces, and more.

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-ai

cURL 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"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.