Getting Started
TextVision provides AI-powered APIs for OCR, text analysis, and vision classification. All requests are made via HTTPS and return JSON responses.
Authentication
All API requests require an API key passed via the Authorization header.
Authorization: Bearer YOUR_API_KEY
OCR API
Extract text from images and scanned documents.
POST /api/v1/ocr Content-Type: multipart/form-data file: image.jpg
Text Analysis API
Analyze sentiment, keywords, and semantic meaning from text input.
POST /api/v1/text/analyze
{
"text": "Hello world"
}Vision Classification
Classify images using custom-trained AI models.
Error Handling
All errors return standard HTTP status codes with JSON error messages.