API Documentation
Complete API reference for MugenLink Network.
Base URL: https://api.mugenlink-network.me/api/v1
Version: 1.0.0
Quick Start
Get started with the MugenLink API in minutes
The MugenLink API is a RESTful API that returns JSON responses. All endpoints are accessible over HTTPS.
bash
# Example: Get dashboard overview
curl -X GET "https://api.mugenlink-network.me/api/v1/dashboard/overview" \
-H "Content-Type: application/json"
# Example: Get wallet summary
curl -X POST "https://api.mugenlink-network.me/api/v1/wallet/summary" \
-H "Content-Type: application/json" \
-d '{"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa", "coin_type": "BITCOIN"}'Authentication
Public endpoints do not require authentication. Rate limits apply to all requests:
- Public: 100 requests per minute
- Authenticated: 1000 requests per minute
For higher rate limits or API key access, please contact us.
Response Format
All API responses follow a consistent JSON structure:
json
{
"success": true,
"data": { /* response data */ },
"cached": false,
"cache_age": 0,
"last_updated": "2026-01-30T12:00:00Z"
}
// Error response
{
"success": false,
"error": "Error message",
"error_code": "VALIDATION_ERROR"
}API Endpoints
Dashboard
Get overview statistics and aggregated data
Wallet
Query wallet balances, transactions, and history
Analytics
Advanced analytics including velocity, cohorts, and network health
Alerts
Manage price and activity alert rules
Network
Blockchain network statistics and status
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
VALIDATION_ERROR | 400 | Invalid request parameters |
INVALID_ADDRESS | 400 | Invalid wallet address format |
INVALID_COIN_TYPE | 400 | Unsupported cryptocurrency type |
NOT_FOUND | 404 | Requested resource not found |
RATE_LIMIT_EXCEEDED | 429 | Too many requests |
INTERNAL_ERROR | 500 | Internal server error |
SERVICE_UNAVAILABLE | 503 | Service temporarily unavailable |
SDKs & Libraries
JavaScript / TypeScript
Official SDK for Node.js and browsers
npm install @mugenlink/sdkPython
Python client library with async support
pip install mugenlink-sdkcURL / REST
Direct REST API access via HTTP
No installation required