Mindra Platform Documentation
Welcome to Mindra Platform - the multi-agent AI orchestration system for enterprise automation.
Welcome to Mindra Platform - the multi-agent AI orchestration system for enterprise automation.
What is Mindra?
Mindra Platform is a production-ready multi-agent orchestration system that allows you to:
- Execute complex workflows with multiple specialized AI agents
- Integrate your own custom agents (any tech stack, any model)
- Process payments with built-in wallet system (FIAT + Crypto)
- Monitor and track all executions with comprehensive metrics
- Scale from prototype to production with enterprise-grade features
Documentation Structure
01. Getting Started
Quick start guide, authentication, and your first API call.
02. API Reference
Complete API documentation for all endpoints.
03. Agent Development
Build and deploy your own agents using our templates.
04. Enterprise Integration
Agent deployment options, SLAs, and enterprise features.
05. Wallet & Billing
FIAT and crypto payment integration.
Quick Links
- API Base URL:
https://api.mindra.co - Dashboard:
https://app.mindra.co - Support: info@mindra.co
- Status Page:
https://status.mindra.co
Get Started in 5 Minutes
# 1. Get your API key from https://app.mindra.co
export MINDRA_API_KEY="mk_your_api_key"
# 2. Make your first orchestration request
curl -X POST https://api.mindra.co/v1/orchestrate \
-H "Authorization: Bearer $MINDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "Create an email campaign for our product launch",
"context": {
"targetAudience": "developers",
"productName": "Mindra Platform"
}
}'
# 3. Check execution status
curl https://api.mindra.co/v1/executions/{execution_id} \
-H "Authorization: Bearer $MINDRA_API_KEY"
Key Features
Multi-Agent Orchestration
Execute complex workflows with multiple specialized agents running in parallel, sequential, or DAG mode.
Bring Your Own Agent
Deploy agents in any language (Python, Go, TypeScript, Rust, etc.) using any model (Claude, GPT, Llama, Random Forest, or your custom ML model).
Built-in Wallet System
- FIAT: Stripe integration for credit card payments
- Crypto: XRP on XRP Ledger for instant, low-cost transactions
Production-Ready
- Pre-execution balance checks
- Automatic retry logic with exponential backoff
- Request deduplication
- Comprehensive logging and metrics
- Prometheus + Grafana monitoring
Enterprise Features
- Agent hosting on Mindra infra
- Custom SLAs
- Dedicated infrastructure
- Priority support
- Volume discounts
Architecture
┌─────────────┐
│ Client │
│ (Your App) │
└──────┬──────┘
│ HTTPS
▼
┌─────────────────────────────────────┐
│ Mindra Platform API │
│ - Authentication │
│ - Orchestration Engine │
│ - Wallet Management │
└──────┬──────────────────────────────┘
│
├──► Agent Registry (PostgreSQL)
│
├──► Agent Pool
│ ┌──────────────────────────┐
│ │ Email Agent │
│ │ Social Media Agent │
│ │ Payment Processor │
│ │ Your Custom Agents... │
│ └──────────────────────────┘
│
└──► Monitoring Stack
┌──────────────────────────┐
│ Prometheus │
│ Grafana │
│ Alert Manager │
└──────────────────────────┘
Use Cases
Marketing Automation
- Email campaign generation
- Social media content creation
- A/B testing optimization
- Audience segmentation
Cross-Border Payments
- Multi-currency processing
- Instant crypto settlements
- Compliance checks
- Transaction tracking
Supply Chain Management
- Inventory optimization
- Shipment tracking
- Demand forecasting
- Supplier coordination
Custom Workflows
Build ANY workflow you need by combining agents or creating your own!
Support
- Documentation Issues: GitHub Issues
- Technical Support: info@mindra.co
- Enterprise Sales: info@mindra.co
Ready to get started? Head to Getting Started →