Two production-ready AI APIs that use computer vision and Vision AI (Groq LLaMA Vision + Gemini + OpenRouter) to do what traditional tools can't: scrape any website with plain English, and detect phishing attacks before they hit your users.
Both available on RapidAPI with a free tier. No credit card required to start.
Both APIs accept a simple JSON body and return clean structured JSON — no SDK required.
# Extract anything with plain English curl -X POST \ "https://opticparse-python-sg.onrender.com/api/vision-scrape" \ -H "X-API-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "target_url": "https://news.ycombinator.com", "extraction_query": "Get all story titles and upvotes" }' # Response — structured JSON, no parsing needed [ { "title": "Show HN: I built X", "upvotes": 342 }, { "title": "Ask HN: How do you Y?", "upvotes": 187 } ]
# Analyze any URL for phishing + prompt injection curl -X POST \ "https://opticparse-1opticparse-node-sg.onrender.com/api/phish-detect" \ -H "Content-Type: application/json" \ -d '{ "url": "https://suspicious-login.example.com" }' # Forensic JSON verdict { "verdict": "malicious", "confidence_score_percentage": 97, "impersonated_brand": "Microsoft", "threat_type": "brand_impersonation", "visual_anomalies_detected": ["Pixelated logo"], "hidden_payload_detected": "IGNORE ALL PREVIOUS..." }
Both APIs share the same core — headless browser + vision AI + smart provider fallbacks.
All plans available on RapidAPI. No credit card needed for the free tier.