dota2protracker.com APIdota2protracker.com ↗
Access high-MMR Dota 2 hero winrates, ELO ratings by position, recent match details with facets and items, and player/hero search via the Dota2ProTracker API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/66214c1a-6b6f-423b-9d88-1a64261b7b38/get_heroes' \ -H 'X-API-Key: $PARSE_API_KEY'
Get list of all heroes with their ELO ratings, winrates, and match counts across all positions (pos 1-5) and aggregate. No parameters required.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of hero objects with displayName, hero_id, primary_attribute, and per-position elo/matches/winrate",
"status": "string, always 'success'"
},
"sample": {
"data": [
{
"npc": "antimage",
"all elo": 2592,
"hero_id": 1,
"pos 1 elo": 2592,
"pos 2 elo": 2916,
"pos 3 elo": 2996,
"pos 4 elo": 0,
"pos 5 elo": 0,
"all matches": 3872,
"all winrate": 0.4737,
"displayName": "Anti-Mage",
"pos 1 matches": 3499,
"pos 1 winrate": 0.479,
"pos 2 matches": 211,
"pos 2 winrate": 0.4123,
"pos 3 matches": 98,
"pos 3 winrate": 0.5,
"pos 4 matches": 24,
"pos 4 winrate": 0.2917,
"pos 5 matches": 38,
"pos 5 winrate": 0.3684,
"primary_attribute": 1
}
],
"status": "success"
}
}About the dota2protracker.com API
The Dota2ProTracker API exposes 3 endpoints covering high-MMR Dota 2 meta data: hero ELO ratings and winrates broken down across all 5 positions, recent matches with per-player facet selections and item builds, and a combined hero/player search. The get_heroes endpoint alone returns per-position elo, match count, and winrate for every hero in the current pool, giving a direct read on the current competitive meta.
Hero Stats and ELO Ratings
The get_heroes endpoint returns the full hero roster with no required parameters. Each hero object includes displayName, hero_id, primary_attribute, and per-position breakdowns (positions 1–5) each containing an ELO score, total match count, and winrate. An aggregate entry across all positions is also included. This makes it straightforward to compare how a hero performs specifically as a carry versus a support without filtering client-side.
High-MMR Match Data
The get_matches endpoint returns recent matches sorted by activate_time descending. You can narrow results using the days parameter (1–30), control result size with limit, and paginate with offset. Each match object includes match_id, mmr, duration, radiant_win, radiant_score, dire_score, and a players array. Player entries carry facet selections, item builds, and networth timelines, making this endpoint useful for tracking how specific hero-facet combinations perform in elite-bracket play.
Hero and Player Search
The search endpoint accepts an optional query string and always returns the full hero roster alongside a filtered player list. Hero objects include displayName, npc, and hero_id. Player objects include account_id and matching name fields. Omitting the query returns all heroes and a default player set, which is useful for bootstrapping a local hero index or autocomplete list.
- Build a draft assistant that ranks heroes by per-position winrate and ELO from
get_heroes. - Track meta shifts over time by polling
get_heroesdaily and storing winrate deltas per hero. - Analyze which hero facets appear most in high-MMR matches using the
playersarray fromget_matches. - Compare item builds for a specific hero across recent elite-bracket matches via
get_matchesplayer data. - Implement an autocomplete search for heroes and professional players using the
searchendpoint. - Build a networth-timeline visualizer using per-player timeline data from
get_matches. - Filter recent matches by MMR tier using the
daysandlimitparameters to study short-term meta trends.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Dota2ProTracker have an official developer API?+
What does the `get_matches` endpoint include for each player in a match?+
players array includes their facet selection, item build, and networth timeline for that match, alongside hero and team information. The endpoint is scoped to high-MMR games and sorted by activation time descending; you can use days (1–30), limit, and offset to control the result window.Does `get_heroes` return hero data for a specific patch or time window?+
Can I look up a specific player's full match history?+
search endpoint returns player records matched by name, and get_matches includes player data within match results. A dedicated player-profile endpoint with full personal match history is not currently part of this API. You can fork it on Parse and revise to add a player-specific match history endpoint.How does pagination work for `get_matches`?+
offset integer parameter alongside limit to page through results. Results are always sorted by activate_time descending, so incrementing offset by your limit value steps through older matches. The days parameter (1–30) sets the outer time boundary for the query.