Player-prop markets, lines, and prices grouped by player and event — with L5/L10/L25/season hit rates joined in, so your prop tools ship with context, not just numbers.
The MoneyLine player props API returns prop markets across the major US leagues, grouped by player under canonical event IDs. Each player entry is enriched with teamAbbr and teamName, and props arrive normalized to American odds across sportsbooks and DFS platforms.
What sets it apart is the hit-rate layer: L5, L10, L25, and season hit rates are computed from boxscore game logs and joined to active props for in-window events. Binary markets like anytime touchdown or anytime goal scorer are handled correctly rather than as numeric thresholds.
Props nested under each player with team enrichment and canonical event IDs.
L5 / L10 / L25 / season hit rates from game logs, joined to active props.
Anytime-TD and anytime-goal use line 0 mapped to the right stat field.
Prop prices from books and DFS pick’em platforms in one normalized shape.
GET /v1/player-props — props grouped by player
Request
curl -H "x-api-key: $ML_API_KEY" \
"https://mlapi.bet/v1/player-props?league=nba&market=player_points"Response
{
"success": true,
"data": [
{
"eventId": "nba-ev-311286",
"leagueId": "nba",
"players": [
{
"playerId": "nba-p-4065648",
"playerName": "Jayson Tatum",
"teamAbbr": "BOS",
"teamName": "Boston Celtics",
"markets": [
{
"marketType": "player_points",
"line": 28.5,
"outcomes": [
{ "name": "Over", "price": -112, "bookmakerId": "draftkings" },
{ "name": "Under", "price": -108, "bookmakerId": "draftkings" }
]
}
]
}
]
}
],
"meta": { "count": 1 }
}Show a prop line alongside 4/5 L5, 8/10 L10, 19/25 L25 hit-rate context.
Rank props by hit rate and price across books and DFS in one view.
Pull pick’em-style prop lines normalized into American odds.
Points, rebounds, assists, threes (NBA); passing/rushing/receiving yards and anytime TD (NFL); strikeouts, hits, total bases (MLB); shots on goal and anytime goal (NHL), among others.
From boxscore game logs over L5, L10, L25, and season windows. Some markets (e.g. first-scorer) are not computable and return hitRateSupported: false.
Yes. DFS pick’em prices are normalized to indicative American odds; they are included in value/EV but excluded from arbitrage.
Free tier to start, one API key, normalized responses across every league and sportsbook.