Musashi API Documentation
README.md
md2.3 KB
Musashi API Documentation
This folder contains all API-related documentation for Musashi.
📚 Documentation Files
For Developers & AI Agent Builders
- `API_DOCUMENTATION.md` ⭐ START HERE
- Complete API reference
- All endpoints documented
- Code examples (Python, JavaScript, cURL)
- Request/response schemas
- Use cases for AI agents
- `api-docs.html` 🌐
- Interactive web version of the API docs
- Beautiful UI with examples
- Open in browser for best experience
- Also live at: https://musashi-api.vercel.app/api-docs.html
For Deployment & Maintenance
- `API_DEPLOYMENT_GUIDE.md` 🚀
- How to deploy to Vercel
- Local development setup
- Environment configuration
- Troubleshooting guide
- Monitoring and logs
- `DEPLOYMENT_STATUS.md` ✅
- Current deployment status
- What's working / what needs fixing
- Quick debug commands
- Deployment checklist
For Understanding the System
- `MUSASHI_V2_HYBRID_ARCHITECTURE.md` 🏗️
- Complete system architecture
- How extension + API work together
- File structure explanation
- Agent integration patterns
- Future roadmap
- `SUCCESS_SUMMARY.md` 🎯
- Deployment completion summary
- Quick links and status
- How to test everything
- Metrics and accomplishments
🚀 Quick Links
- Live API: https://musashi-api.vercel.app/api/analyze-text
- GitHub: https://github.com/VittorioC13/Musashi
- Test Endpoint: https://musashi-api.vercel.app/api/test
📖 Recommended Reading Order
If you're new:
- Read
SUCCESS_SUMMARY.md- Get overview - Read
API_DOCUMENTATION.md- Understand the API - Open
api-docs.htmlin browser - See interactive examples
If you're deploying:
- Read
API_DEPLOYMENT_GUIDE.md- Deployment steps - Check
DEPLOYMENT_STATUS.md- Current status
If you're building an agent:
- Read
API_DOCUMENTATION.md- API reference - Check code examples section
- Test with the live API
🤖 Quick API Example
bash
# Test the API right now
curl -X POST https://musashi-api.vercel.app/api/analyze-text \
-H "Content-Type: application/json" \
-d '{"text": "Bitcoin just crossed 100k", "maxResults": 3}'Last updated: February 27, 2026