Trade Manager Developers

Build with Trade Manager

Integrate your applications with Trade Manager using our powerful REST API. Access recorders, traders, trades, and more.

API Keys

Generate and manage API keys with granular permissions for secure access.

Documentation

Comprehensive API documentation with interactive examples and code snippets.

Analytics

Track API usage, monitor performance, and view detailed logs.

RESTful

Simple, intuitive REST API that works with any programming language.

Quick Example

// Get your recorders
const response = await fetch('https://developers.trademanagergroup.net/api/v1/recorders', {
  headers: {
    'Authorization': 'Bearer tmdev_live_your_api_key_here'
  }
});

const data = await response.json();
console.log(data.recorders);

Available Endpoints

GET/api/v1/me

Get current user information

GET/api/v1/recorders

List all your recorders

POST/api/v1/recorders

Create a new recorder

GET/api/v1/traders

List all your traders