Access powerful AI capabilities through our RESTful API. Build intelligent applications with speech recognition, text analysis, and more.
Get StartedObtain your API key from our support team
curl -X POST "https://api.mobytech.dev/v1/text/analyze" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Artificial intelligence is shaping the future!"}'
{
"analysis": {
"sentiment": "positive",
"summary": "The text expresses optimism about AI's influence on future developments.",
"keywords": ["technology", "future", "innovation"]
},
"status": "success"
}
Sentiment analysis, keyword extraction, and summarization in 30+ languages.
Convert speech to text with 99% accuracy and real-time transcription capabilities.
Generate actionable business insights from large datasets using our machine learning models.
Train and deploy custom AI models with our automated machine learning platform.
Use an HTTP Bearer token with your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
All endpoints require authentication except /health
POST /v1/text/analyze
{ "text": "String to analyze"}
Returns sentiment analysis, key phrases, and language detection
POST /v1/voice/transcribe
{
"audio": "base64 encoded file",
"format": "mp3|wav"
}
Returns transcribed text and detected language
POST /v1/data/analyze
{
"data": "CSV or JSON dataset",
"metrics": "[\"regression\", \"clustering\"]"
}
Returns model training status and prediction accuracy metrics
Plan | Requests/Minute | Description
Plan | Requests/Minute | Description |
---|---|---|
Free | 100 | Ideal for testing and demo apps |
Pro | 1000 | Recommended for production workloads |
Enterprise | Unlimited | Custom pricing for high-volume users |
curl -X POST "https://api.mobytech.dev/v1/text/analyze" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Quantum computing will revolutionize machine intelligence"
}'
curl -X POST "https://api.mobytech.dev/v1/voice/transcribe" \
-H "Authorization: Bearer YOUR_API_key" \
-H "Content-Type: application/json" \
-d '{
"audio": "base64 encoded audio data",
"format": "wav"
}'
curl -X POST "https://api.mobytech.dev/v1/data/analyze" \
-H "Authorization: Bearer YOUR_API_key" \
-H "Content-Type: application/json" \
-d '{
"data": "base64 encoded CSV/JSON dataset",
"metrics": ["regression", "classification"]
}'
Check Health
curl -X GET "https://api.mobytech.dev/health"
Returns {"status": "healthy", "timestamp": "ISO datetime"}
Join our developer community or get expert support for your implementation.