Skip to main content

Overview

The MT5 Monitor API provides endpoints for authentication, MT5 trading data management, sentiment analysis, blog management, and user administration. Base URL: https://api-verifier-2.onrender.com

Authentication

Most endpoints require authentication using JWT tokens. After logging in, include the token in your requests:
  • Cookie-based: The token is automatically set as an HTTP-only cookie
  • Bearer token: Include in the Authorization header
Authorization: Bearer <your-token>

API groups

Response format

All API responses follow a consistent JSON format:
{
  "success": true,
  "message": "Operation completed",
  "data": { }
}
Error responses include an error message:
{
  "success": false,
  "error": "Error description"
}

Rate limiting

The API implements rate limiting to ensure fair usage. If you exceed the limit, you’ll receive a 429 Too Many Requests response.