Overview
The TradeX Pro AI Pro AI AI API provides programmatic access to market data, AI-generated signals, and portfolio analytics. API access is available to registered developers and enterprise partners.
Authentication
All API requests require an API key passed in the header:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Request API keys at developers@tradexproai.com.
Base URL
https://api.tradexproai.com/v2
Endpoints
GET /markets
Returns list of supported markets and trading pairs.
GET /signals/{symbol}
Returns latest AI-generated signal for a given symbol including confidence score, direction, and timestamp.
GET /analysis/{symbol}
Returns detailed technical analysis including indicators, support/resistance levels, and trend data.
GET /portfolio/{user_id}
Returns portfolio summary and performance metrics (requires user authorization).
POST /alerts
Create price or signal-based alerts. Body: { "symbol": "BTC/USD", "condition": "above", "price": 50000 }
Rate Limits
- Free Tier: 100 requests/hour
- Pro Tier: 1,000 requests/hour
- Enterprise: Custom limits
Response Format
All responses are JSON with standard structure:
{ "status": "success", "data": { ... }, "timestamp": "2026-07-09T12:00:00Z" }
Error Codes
- 400 - Bad Request (invalid parameters)
- 401 - Unauthorized (invalid API key)
- 429 - Rate Limit Exceeded
- 500 - Internal Server Error
Terms of Use
API usage is subject to our Terms of Service. Redistribution of AI signals to third parties requires an enterprise license.