📊 MarketDly API

Access real-time swing trading signals programmatically
⚠️ Private Beta: API access is currently restricted. Contact admin@marketdly.com for access.
$99
per month

Authentication

All API requests require an API key in the header:

X-API-Key: mrkt_your_api_key_here

Base URL

https://api.marketdly.com

Endpoints

GET /signals

Get all active trading signals

Response

{
  "signals": [
    {
      "ticker": "AAPL",
      "entry_price": 185.50,
      "target_price": 195.00,
      "stop_loss": 180.00,
      "pattern": "Bull Flag",
      "date": "2025-12-09",
      "status": "active"
    }
  ]
}

GET /signals/{ticker}

Get signals for a specific ticker

ticker (string) - Stock ticker symbol

GET /performance

Get historical performance metrics

Response

{
  "win_rate": 48.3,
  "total_signals": 91,
  "wins": 29,
  "losses": 31,
  "avg_win": 3.52,
  "avg_loss": -3.04
}

Rate Limits

API access tier includes 10,000 calls per month. Rate limit headers are included in all responses:

X-RateLimit-Limit: 10000
X-RateLimit-Remaining: 9847
X-RateLimit-Reset: 2025-01-01T00:00:00Z

Example Request

curl -H "X-API-Key: mrkt_your_api_key_here" \
     https://api.marketdly.com/signals

Error Codes

401 Unauthorized - Invalid or missing API key
429 Too Many Requests - Rate limit exceeded
500 Internal Server Error - Server error

Support

Questions? Contact us at admin@marketdly.com