Skip to main content

Vision

Analyze any image URL with Claude Vision — describe, extract text, answer questions

$0.05
per call
POST /vision Web Intelligence

Try It

This tool requires an API key. Get one from $1 to try it.

curl Example

curl -X POST https://api.aipaygen.com/vision \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "url": "image_url",
  "question": "optional"
}'

Python Example

import requests

resp = requests.post(
    "https://api.aipaygen.com/vision",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={
    "url": "image_url",
    "question": "optional"
}
)
print(resp.json())

Response Format

{
  "result": "<Vision output>",
  "_meta": {
    "endpoint": "/vision",
    "model": "claude-sonnet-4-20250514",
    "cost_usd": 0.05
  }
}

Related Tools

Analyze
$0.02
Extract
$0.02
Research
$0.15

Get API Key — From $1

$0.25 trial credits free. ~40 AI calls. No subscription.

Get Started

Or install via MCP: pip install aipaygen-mcp