ToolAssay

Analyze any image URL using GPT-4o-mini vision

Analyze any image URL using GPT-4o-mini vision. Returns structured analysis based on the mode: describe (full description), ocr (text extraction), chart (data/trend extraction), ui (interface analysis), identify (object/subject ID), or qa (answer a specific question about the image). Input must be a publicly accessible image URL (JPEG, PNG, GIF, WebP). $0.050/call.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
613 msmedian answer time
$0.05listed price per call
$0.05price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://the-stall.intuitek.ai/cap/vision-analyze

CategoryImage and media
Provider hostthe-stall.intuitek.ai
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days10 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.05 613 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {},
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "detail": {
              "default": "auto",
              "description": "OpenAI vision detail level. 'auto' (default): model decides based on image size. 'low': faster, cheaper, less detail (best for simple images). 'high': slower, more detail (best for charts, dense text, complex scenes).",
              "enum": [
                "low",
                "high",
                "auto"
              ],
              "type": "string"
            },
            "mode": {
              "default": "describe",
              "description": "Analysis mode: describe (full scene description), ocr (text extraction), chart (data/chart analysis), ui (UI screenshot analysis), identify (object/subject identification), qa (answer a specific question about the image \u2014 requires the 'question' parameter).",
              "enum": [
                "describe",
                "ocr",
                "chart",
                "ui",
                "identify",
                "qa"
              ],
              "type": "string"
            },
            "question": {
              "description": "For mode=qa only: the specific question to answer about the image. E.g., 'What is the total revenue shown in Q3?' or 'What does the error message say?'",
              "maxLength": 500,
              "type": "string"
            },
            "url": {
              "description": "Publicly accessible URL of the image to analyze. Must return image/jpeg, image/png, image/gif, or image/webp content-type. Max file size: 20MB.",
              "type": "string"
            }
          },
          "required": [],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "analysis": {
              "description": "AI-generated analysis of the image based on the selected mode.",
              "type": "string"
            },
            "finish_reason": {
              "description": "OpenAI finish reason (stop, length, content_filter).",
              "type": "string"
            },
            "mode": {
              "description": "The analysis mode that was applied.",
              "type": "string"
            },
            "model": {
              "description": "OpenAI model used for analysis.",
              "type": "string"
            },
            "tokens": {
              "properties": {
                "completion": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "prompt": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "total": {
                  "type": [
                    "integer",
                    "null"
                  ]
                }
              },
              "type": "object"
            },
            "url": {
              "description": "The image URL that was analyzed.",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON