
3 New IteraTools Endpoints: GPT-4o Vision, SMS via Twilio, and AI Chat
IteraTools just hit 51 tools . This post covers three new endpoints added this week: POST /image/describe , POST /sms/send , and POST /ai/chat . All pay-per-use, no subscription, MCP-compatible. 1. Image Description — POST /image/describe Describe any image in detail using GPT-4o vision , with automatic fallback to Claude 3 Haiku . Pass a public URL or base64-encoded image and get back: A rich natural-language description Semantic tags extracted from the content Which model was used Use cases: Generate alt-text for accessibility compliance Classify or tag user-uploaded images Extract product details from e-commerce photos Feed visual context into AI agent reasoning Understand screenshots in support workflows Request: curl -X POST https://api.iteratools.com/image/describe \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "image": "https://example.com/product-photo.jpg", "prompt": "Describe the main product and its features." }' Response: { "ok" : true ,
Continue reading on Dev.to Webdev
Opens in a new tab




