Discover/Dota2ProTracker API
live

Dota2ProTracker 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.

Endpoint health
verified 3d ago
get_matches
get_heroes
search
3/3 passing latest checkself-healing
Endpoints
3
Updated
4d ago

What is the Dota2ProTracker 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.

Try it

No input parameters required.

api.parse.bot/scraper/66214c1a-6b6f-423b-9d88-1a64261b7b38/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/66214c1a-6b6f-423b-9d88-1a64261b7b38/get_heroes' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dota2protracker-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Dota2ProTracker SDK — bounded, re-runnable; every call capped."""
from parse_apis.Dota2ProTracker_API import Dota2ProTracker, InvalidDaysRange

client = Dota2ProTracker()

# List top heroes with per-position stats.
for hero in client.heros.list(limit=5):
    print(hero.display_name, hero.all_elo, hero.all_winrate)

# Fetch recent high MMR matches from the last 30 days.
match = client.matches.list(days=30, limit=1).first()
if match:
    print(match.match_id, match.mmr, match.duration, match.radiant_score, match.dire_score)
    for player in match.players[:3]:
        print(player.hero_name, player.kills, player.deaths, player.assists, player.net_worth)

# Search for players by name keyword.
results = client.search_results.find(query="invoker")
for player in results.players[:3]:
    print(player.name, player.matches, player.wins)

# Typed error handling: catch invalid days parameter.
try:
    for m in client.matches.list(days=0, limit=1):
        print(m.match_id)
except InvalidDaysRange as exc:
    print(f"Invalid input: {exc}")

print("exercised: heros.list / matches.list / search_results.find / InvalidDaysRange")
All endpoints · 3 totalmissing one? ·

Retrieves the full roster of Dota 2 heroes with ELO ratings, winrates, and match counts broken down by position (1-5) and aggregate. Returns all heroes in a single response with no filtering — client-side filtering is required for position or attribute analysis. Each hero includes per-position statistics so callers can identify position-specific meta trends.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "heroes": "array of hero objects each containing displayName, hero_id, primary_attribute, npc, and per-position elo/matches/winrate stats"
  }
}

About the Dota2ProTracker API

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.

Reliability & maintenanceVerified

The Dota2ProTracker API is a managed, monitored endpoint for dota2protracker.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dota2protracker.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official dota2protracker.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a draft assistant that ranks heroes by per-position winrate and ELO from get_heroes.
  • Track meta shifts over time by polling get_heroes daily and storing winrate deltas per hero.
  • Analyze which hero facets appear most in high-MMR matches using the players array from get_matches.
  • Compare item builds for a specific hero across recent elite-bracket matches via get_matches player data.
  • Implement an autocomplete search for heroes and professional players using the search endpoint.
  • Build a networth-timeline visualizer using per-player timeline data from get_matches.
  • Filter recent matches by MMR tier using the days and limit parameters to study short-term meta trends.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Dota2ProTracker have an official developer API?+
Dota2ProTracker does not publish an official public developer API or documented API endpoints for third-party use.
What does the `get_matches` endpoint include for each player in a match?+
Each player entry in the 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?+
The endpoint returns current aggregate data from the Dota2ProTracker dataset and does not accept a patch version or date-range parameter. It reflects the live tracked state of the hero pool. If you need historical per-patch breakdowns, the current endpoint does not support that. You can fork this API on Parse and revise it to add a patch or date filter if the underlying data surface supports it.
Can I look up a specific player's full match history?+
The 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`?+
Use the 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.
Page content last updated . Spec covers 3 endpoints from dota2protracker.com.
Related APIs in SportsSee all →
opendota.com API
Access detailed Dota 2 match statistics, player performance metrics, hero win rates, and professional tournament data to analyze gameplay trends and competitive performance. Search for specific players, explore custom data queries through SQL, and retrieve comprehensive match histories to improve your understanding of the game.
dotabuff.com API
Access Dota 2 hero performance metrics from Dotabuff, including win rates, pick rates, ban rates, item builds, and lane statistics. Retrieve meta trend data and detailed per-hero attributes, roles, and ability information to support hero analysis and draft research.
csgostats.gg API
Track and analyze Counter-Strike 2 player performance with detailed statistics including weapon usage, match history, and head-to-head comparisons. Access global leaderboards, view recent matches, and discover which players you've competed against to benchmark your skills.
rocketleague.tracker.network API
Retrieve Rocket League player profiles, historical season statistics, playlist rankings, and recent match session data from Tracker Network. Search for players across platforms and compare performance metrics, rank ratings, and progression across seasons.
csstats.org API
Track Counter-Strike 2 player performance with detailed statistics, match history, and leaderboard rankings from csstats.gg. Search players, view their profiles, analyze individual matches, check ban records, and see who they've played with.
valoranttracker.com API
Track Valorant player statistics, search for specific players, and view detailed competitive profiles to analyze individual performance. Discover current agent and map meta trends along with global rank distribution data to stay competitive and informed about the game's evolving strategies.
lolpros.gg API
Search and discover professional League of Legends players while exploring detailed profiles, ladder rankings, and competitive statistics from the pro scene. Track player performance metrics, find competitors by name, and monitor where top players stand in the rankings.
fortnitetracker.com API
Track Fortnite competitive tournaments by browsing upcoming events, viewing detailed information about specific competitions, and checking player leaderboards to see rankings and performance stats. Monitor the esports calendar and follow how top competitors are performing across official Fortnite events.