Replay Min Id Endpoint


This endpoint is used for gathering information on new replays in the Heroes Profile database after a given replayID. This endpoint returns up to 1000 results. We periodically delete replays, so if the tag deleted is true, or the replay url is null, the replay no longer exists.

{
  "replayID": replayID,
  "hotsapi_replayID": hotsapi_replayID,
  "region" : region,
  "url": url,
  "fingerprint": fingerprint,
  "checked_hotsapi": checked_hotsapi,
  "parsed": parsed,
  "valid": valid,
  "deleted": deleted,
  "game_type": game_type,
  "game_version": game_version,
  "game_map": game_map,
  "rank": rank
}

Example Usage

{warning} All API calls to /api/ require an api_token as part of the query string and are prefixed by https://api.heroesprofile.com/api
Free calls are prefixed by /openApi/ and do not require an api_token

Method URI Headers
GET /Replay/Min_id?min_id=25001668 Default
GET /Replay/Min_id?min_id=25001668&game_type=Storm League Default
GET /Replay/Min_id?min_id=25001668&game_type=Storm League&rank=Master Default
GET /Replay/Min_id?min_id=25001668&game_map=Alterac Pass Default
GET /Replay/Min_id?min_id=25001668&timeframe_type=minor&timeframe=2.55.2.87774 Default

URL Parameters (required)

min_id: Heroes Profile replayID

URL Parameters (as needed)

game_type: Full game mode name  e.g. Storm League

The following are not available through the OpenApi API call

URL Parameters (as needed)

game_map: (full map name.  e.g. Braxis Holdout)
rank: (full rank name.  e.g. Master)
timeframe_type:  major or minor
timeframe:  e.g, 2.47, 2.47.1.75792

Example Return

{
  {
    replayID: 35045535,
    hotsapi_replayID: 30829586,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/a0b6c55f-5358-6613-3a08-3149a7d54680.StormReplay",
    fingerprint: "a0b6c55f-5358-6613-3a08-3149a7d54680",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "ARAM",
    game_version: "2.53.0.83086",
    game_map: "Lost Cavern",
    rank: "Diamond"
  },
  {
    replayID: 35045536,
    hotsapi_replayID: 30829587,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/e9df7254-a353-cbaa-c757-6d80d8e69324.StormReplay",
    fingerprint: "e9df7254-a353-cbaa-c757-6d80d8e69324",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "Quick Match",
    game_version: "2.53.0.83086",
    game_map: "Tomb of the Spider Queen",
    rank: "Bronze"
  },
  {
    replayID: 35045537,
    hotsapi_replayID: 30829588,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/66ff4122-3004-e00a-277d-ef7bf31def47.StormReplay",
    fingerprint: "66ff4122-3004-e00a-277d-ef7bf31def47",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "ARAM",
    game_version: "2.53.1.83716",
    game_map: "Silver City",
    rank: "Diamond"
  },
  {
    replayID: 35045538,
    hotsapi_replayID: 30829589,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/578fbf6e-cc1e-b23b-52d9-c33d19301939.StormReplay",
    fingerprint: "578fbf6e-cc1e-b23b-52d9-c33d19301939",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "Storm League",
    game_version: "2.53.1.83716",
    game_map: "Hanamura Temple",
    rank: "Diamond"
  },
  {
    replayID: 35045539,
    hotsapi_replayID: 30829595,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/30240b3b-6feb-1a90-87fe-aaab4767b336.StormReplay",
    fingerprint: "30240b3b-6feb-1a90-87fe-aaab4767b336",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "Quick Match",
    game_version: "2.53.1.83716",
    game_map: "Cursed Hollow",
    rank: "Bronze"
  },
  {
    replayID: 35045540,
    hotsapi_replayID: 30829590,
    region: "US",
    url: "http://heroesprofile.s3.amazonaws.com/dc4dce05-7ec3-c682-4053-255f58e65d10.StormReplay",
    fingerprint: "dc4dce05-7ec3-c682-4053-255f58e65d10",
    checked_hotsapi: 1,
    parsed: 1,
    valid: 1,
    deleted: null,
    game_type: "Quick Match",
    game_version: "2.53.0.83086",
    game_map: "Hanamura Temple",
    rank: "Bronze"
  },
}