Complete reference documentation for the Wise Trade API. Build powerful trading applications with our RESTful API and real-time webhooks.
https://api.yzetrade.com/v1
Bearer Token & API Keys
JSON Request/Response
Comprehensive list of all available endpoints organized by category
/api/v1/auth/login
{ "email": "string", "password": "string" }
{ "token": "string", "user": "User", "expiresIn": "number" }
/api/v1/user/profile
{ "Authorization": "Bearer {token}" }
{ "id": "string", "email": "string", "role": "string", "createdAt": "datetime" }
/api/v1/funds
{ "Authorization": "Bearer {token}" }
{ "name": "string", "description": "string", "strategy": "string", "capital": "number", "riskLevel": "LOW | MEDIUM | HIGH" }
{ "id": "string", "name": "string", "status": "ACTIVE | PAUSED | STOPPED", "createdAt": "datetime" }
/api/v1/funds/{id}
{ "Authorization": "Bearer {token}" }
{ "id": "string", "name": "string", "performance": "PerformanceMetrics", "positions": "Position[]", "orders": "Order[]" }
/api/v1/signals
{ "X-API-Key": "your-webhook-key" }
{ "fundId": "string", "action": "BUY | SELL | CLOSE", "symbol": "string", "quantity": "number", "price": "number" }
{ "orderId": "string", "status": "PENDING | FILLED | REJECTED", "message": "string" }
/api/v1/orders
{ "Authorization": "Bearer {token}" }
{ "fundId": "string (optional)", "status": "string (optional)", "limit": "number (default: 50)", "offset": "number (default: 0)" }
{ "orders": "Order[]", "total": "number", "hasMore": "boolean" }
Standard HTTP status codes and their meanings in our API
API usage limits to ensure fair access and system stability
Get started quickly with our official software development kits
npm install @yzetrade/sdk
import { YzeTradeClient } from '@yzetrade/sdk'; const client = new YzeTradeClient({ apiKey: 'your-api-key', environment: 'production' }); const funds = await client.funds.list();
pip install yzetrade-python
from yzetrade import YzeTradeClient client = YzeTradeClient( api_key='your-api-key', environment='production' ) funds = client.funds.list()
Get your API key and start integrating with Wise Trade today. Join hundreds of developers building the future of trading.