# Get Order Details Here is a specific endpoint which returns order information by orderId **HTTP GET {betting-paltform-svc-url}/external/orders/{{tenantId}}/order/1386635822** ***Headers: *Authorization: Bearer {{ApiKey}}* ***Respone Example:*** ```json { "orderId": 1382718076, "statusName": "Finished", "statusId": "", "bet": { "isWon": true, "isCashout": true, "cashoutAmount": 1.91, "fullName": "ordinar", "stakes": [ { "eventId": 1233123123, "eventName": "Costa Rica - Germany Offsides", "eventDate": "2022-11-30T15:00:00Z", "sportId": 1, "sportName": "Football", "tournamentName": "World Cup 2022", "tournamentId": 12, "factor": 1.91, "statusName": "Finished", "statusId": 123, } ], "betAmount": 1, "maxWinAmount": 1.91, "winAmount": 1.91, "factor": 1.91 } } ```