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

Authentication

User registration, login, logout, and token verification

MT5 Data

Update and manage MT5 account data, orders, and history

Sentiment

Retrieve market sentiment data

Blog

Create, manage, and moderate blog posts

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.