LeMoment API Documentation

Live API Test

Chart Preview


            

Authentication

All API requests require a JWT token in the request headers:

X-API-Key: eyJhbGciOiJSUzI1NiIsImtpZCI6Ik1vY2tLZXkxMjMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJNb2NrdXBBcGkiLCJzdWIiOiJ1c2VyQG1vY2t1cC5pbyIsImF1ZCI6IkFQSV9DbGllbnQiLCJleHAiOjE3NzM4NzMyMDAsImlhdCI6MTY3Mzg3MzIwMH0.KvS8ym0k9HsCl6Bo8YXG8d7tPZcMsZchd8Op16uRKJw

API Endpoints

GET /analyze/{symbol}

Get trading analysis and chart for a given symbol

URL Parameters

Parameter Type Description Example
symbol string Trading symbol (required) AAPL.US, BTC-USD.cc

Request Example

curl -X GET "https://your-api.repl.co/analyze/AAPL.US" \
    -H "X-API-Key: your-jwt-token" \
    -H "Accept: application/json"

Python Example

import requests

jwt_token = "your-jwt-token"
symbol = "AAPL.US"

response = requests.get(
    f"https://your-api.repl.co/analyze/{symbol}",
    headers={
        "X-API-Key": jwt_token,
        "Accept": "application/json"
    }
)

data = response.json()
print(data["formatted_output"])

JavaScript Example

const jwtToken = "your-jwt-token";
const symbol = "AAPL.US";

fetch(`https://your-api.repl.co/analyze/${symbol}`, {
    headers: {
        "X-API-Key": jwtToken,
        "Accept": "application/json"
    }
})
.then(response => response.json())
.then(data => console.log(data.formatted_output));

Response Format

{
    "symbol": "AAPL.US",
    "formatted_output": "Trading Analyse\nRecommendation: LONG\n\nEntry Price: 150.25\n\nStop: 148.75\n\nPosition Size: 100%\n\nDate & Time (CET): 24.2.2025, 14:30:45",
    "analysis": {
        "recommendation": "LONG",
        "entry_price": 150.25,
        "stop_loss": 148.75,
        "position_size": "100%",
        "timestamp": "24.2.2025, 14:30:45",
        "average_price": 149.50
    },
    "chart_data": {
        "data": [
            ["Day", "Low", "Opening", "Closing", "High"],
            ["", 148.00, 149.50, 150.25, 151.00]
        ],
        "options": {
            "legend": "none",
            "candlestick": {
                "fallingColor": { "strokeWidth": 0, "fill": "#a52714" },
                "risingColor": { "strokeWidth": 0, "fill": "#0f9d58" }
            }
        }
    },
    "raw_data": {
        "open": 149.50,
        "high": 151.00,
        "low": 148.00,
        "close": 150.25,
        "volume": 1000000,
        "previous_close": 149.00
    }
}

Error Responses

Status Code Description Example Response
401 Authentication Error {"error": "Invalid JWT token format"}
400 Bad Request {"error": "Invalid symbol format"}
503 Service Unavailable {"error": "Failed to fetch data from EOD API"}