← Vision AI

API Test

Test the Vision AI API directly from the browser

0.3

Example cURL Commands

Single Model

curl -X POST https://vision.kim8.s4s.host/api/analyze \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/gemma-3-27b-it",
    "prompt": "Describe this image",
    "image": "https://example.com/screenshot.png",
    "temperature": 0.3,
    "max_tokens": 500
  }'

Multi-Model Comparison

curl -X POST https://vision.kim8.s4s.host/api/analyze \
  -H "Content-Type: application/json" \
  -d '{
    "models": [
      "google/gemma-3-27b-it",
      "google/gemma-3-12b-it",
      "mistralai/Mistral-Small-3.2-24B-Instruct-2506"
    ],
    "prompt": "Describe this image",
    "image": "https://example.com/screenshot.png",
    "temperature": 0.3,
    "max_tokens": 500
  }'

Get Available Models

curl https://vision.kim8.s4s.host/api/models

Health Check

curl https://vision.kim8.s4s.host/api/health

For all available models, see the Model Catalog