MobyTech API

Access powerful AI capabilities through our RESTful API. Build intelligent applications with speech recognition, text analysis, and more.

Get Started

Getting Started

Obtain 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"
}

API Features

Text Analysis

Sentiment analysis, keyword extraction, and summarization in 30+ languages.

Voice Processing

Convert speech to text with 99% accuracy and real-time transcription capabilities.

Data Insights

Generate actionable business insights from large datasets using our machine learning models.

Custom Models

Train and deploy custom AI models with our automated machine learning platform.

API Reference

Authentication

Use an HTTP Bearer token with your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

All endpoints require authentication except /health

Available Endpoints

1. Text Analysis

POST /v1/text/analyze

{ "text": "String to analyze"}

Returns sentiment analysis, key phrases, and language detection

2. Voice Transcription

POST /v1/voice/transcribe

{
  "audio": "base64 encoded file",
  "format": "mp3|wav"
}

Returns transcribed text and detected language

3. Data Insights

POST /v1/data/analyze

{
  "data": "CSV or JSON dataset",
  "metrics": "[\"regression\", \"clustering\"]"
}

Returns model training status and prediction accuracy metrics

Rate Limits

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

Example Requests

Text Analysis Example


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"
  }'
                    

Voice Transcription Example


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"
  }'
                    

Data Insights Example


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"}

Need Help Integrating MobyTech?

Join our developer community or get expert support for your implementation.