3.5.0 • Published 7 months ago

hltv v3.5.0

Weekly downloads
140
License
ISC
Repository
github
Last release
7 months ago

Dependency Status devDependencies Status

Table of contents

Installation

NPM

Usage

:warning: WARNING: Abusing this library will likely result in an IP ban from HLTV simply because of Cloudflare bot protection.

Please use with caution and try to limit the rate and amount of your requests if you value your access to HLTV. Each method has the number of requests it makes to HLTV documented in this README. This is important if you want to implement some kind of throttling yourself.

// In .mjs files and if you're using a bundler
import HLTV from 'hltv'
// Or if you're stuck with CommonJS
const { HLTV } = require('hltv')

Configuration

You can create an instance of HLTV with a custom config if you want to.

OptionTypeDefault valueDescription
loadPage(url: string) => Promise\<string>based on the 'got' libraryFunction that will be called when the library makes a request to HLTV
httpAgentHttpAgentHttpsAgentHttp agent used when sending a request and connecting to the scorebot websocket
const myHLTV = HLTV.createInstance({ loadPage: (url) => axios.get(url) })
// or
const myHLTV = HLTV.createInstance({ loadPage: (url) => fetch(url) })
// or you can just use the HLTV export directly to use the default settings
import HLTV from 'hltv'

HLTV.getMatch({ ... })

See config schema

API

getMatch

Parses most information from a match page (1 request)

OptionTypeDefault valueDescription
idnumber-The match id
HLTV.getMatch({ id: 2306295 }).then(res => {
    ...
})

See schema


getMatches

Parses all matches from the hltv.org/matches/ page (1 request)

OptionTypeDefault ValueDescription
eventIdsnumber[]?-Filter matches by event IDs.
eventTypeMatchEventType?-Filter matches by event type.
filterMatchFilter?-Filter matches by pre-set categories. Overrides other filters.
teamIdsnumber[]?--
HLTV.getMatches().then((res) => {
  ...
})

See schema

getMatchesStats

Parses all matches from the hltv.org/stats/matches page (1 request per page of results)

OptionTypeDefault ValueDescription
startDatestring?--
endDatestring?--
matchTypeMatchType?--
mapsGameMap[]?--
rankingFilterRankingFilter?--
delayBetweenPageRequestsnumber?0Used to prevent CloudFlare throttling (ms)
// ! BE CAREFUL, THIS CAN MAKE A LOT OF REQUESTS IF THERE ARE A LOT OF PAGES
HLTV.getMatchesStats({ startDate: '2017-07-10', endDate: '2017-07-18' }).then((res) => {
  ...
})

See schema


getMatchStats

Parses info from the hltv.org/stats/matches/*/* all maps stats page (1 request)

OptionTypeDefault ValueDescription
idnumber--
HLTV.getMatchStats({ id: 62979 }).then((res) => {
  ...
})

See schema


getMatchMapStats

Parses info from the hltv.org/stats/matches/mapstatsid/*/* single map stats page (2 requests)

OptionTypeDefault ValueDescription
idnumber--
HLTV.getMatchMapStats({ id: 49968 }).then((res) => {
  ...
})

See schema


getStreams

Parses all streams present on the front page of HLTV (1 request + 1 request per stream if loadLinks is true)

OptionTypeDefault ValueDescription
loadLinksbooleanfalseEnables parsing of the stream links (every stream is an additional separate request).
HLTV.getStreams().then((res) => {
  ...
})

See schema


getRecentThreads

Parses the latest threads on the front page of HLTV (1 request)

OptionTypeDefault ValueDescription
----
HLTV.getRecentThreads().then((res) => {
  ...
})

See schema

getTeamRanking

Parses the info from the hltv.org/ranking/teams/ page (1 request)

OptionTypeDefault ValueDescription
year2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022--
month'january' | 'february' | 'march' | 'april' | 'may' | 'june' | 'july' | 'august' | 'september' | 'october' | 'november' | 'december'--
daynumber?--
countrystring?-Must be capitalized ('Brazil', 'France' etc)
// If you don't provide a filter the latest ranking will be parsed
HLTV.getTeamRanking()
HLTV.getTeamRanking({ country: 'Thailand' })
HLTV.getTeamRanking({ year: 2017, month: 'may', day: 29 }).then((res) => {
  ...
})

See schema


getTeam

Parses the info from the hltv.org/team/ page (1 request)

OptionTypeDefault valueDescription
idnumber-The team id
HLTV.getTeam({ id: 6137 }).then(res => {
    ...
})

See schema


getTeamByName

Same as getTeam but accepts a team name instead of ID. (2 requests)

OptionTypeDefault valueDescription
namestring-The team name
HLTV.getTeamByName({ name: "BIG" }).then(res => {
    ...
})

See getTeam schema


getTeamStats

Parses the info from the hltv.org/stats/teams/* page (4 requests + 1 more if currentRosterOnly is true)

OptionTypeDefault valueDescription
idnumber-The team id
currentRosterOnlyboolean?falseReturn stats about the current roster only
startDatestring?--
endDatestring?--
matchTypeMatchType?--
rankingFilterRankingFilter?--
mapsGameMap[]?--
bestOfXBestOfFilter?--
HLTV.getTeamStats({ id: 6137 }).then(res => {
    ...
})

See schema


getPlayer

Parses the info from the hltv.org/player/* page (1 request)

OptionTypeDefault valueDescription
idnumber-The player id
HLTV.getPlayer({ id: 6137 }).then(res => {
    ...
})

See schema


getPlayerByName

Same as getPlayer but accepts a player name instead of ID. (2 requests)

OptionTypeDefault valueDescription
namestring-The player name
HLTV.getPlayerByName({ name: "chrisJ" }).then(res => {
    ...
})

See getPlayer schema

getPlayerStats

Parses the info from hltv.org/stats/players/* (3 requests)

OptionTypeDefault valueDescription
idnumber--
startDatestring?--
endDatestring?--
matchTypeMatchType?--
rankingFilterRankingFilter?--
mapsGameMap[]?--
bestOfXBestOfFilter?--
eventIdsnumber[]?--
HLTV.getPlayerStats({ id: 7998 }).then(res => {
    ...
})

See schema


getPlayerRanking

Parses the info from hltv.org/stats/players page (1 request)

OptionTypeDefault valueDescription
startDatestring?--
endDatestring?--
matchTypeMatchType?--
rankingFilterRankingFilter?--
mapsGameMap[]?--
minMapCountnumber?--
countriesstring[]--
bestOfXBestOfFilter?--
// If you don't provide a filter the latest ranking will be parsed
HLTV.getPlayerRanking({ startDate: '2018-07-01', endDate: '2018-10-01' }).then(res => {
    ...
})

See schema


getEvents

Parses the info from the hltv.org/events page (1 request)

OptionTypeDefault valueDescription
eventTypeEventType?-Event type e.g. EventSize.Major, EventSize.LocalLAN
prizePoolMinnumber?-Minimum prize pool (USD$)
prizePoolMaxnumber?-Maximum prize pool (USD$)
attendingTeamIdsnumber[]?--
attendingPlayerIdsnumber[]?--
HLTV.getEvents().then(res => {
    ...
})

See schema


getEvent

Parses the info from the hltv.org/event/ page (1 request)

OptionTypeDefault valueDescription
idnumber-The event id
HLTV.getEvent({ id: 3389 }).then(res => {
    ...
})

See schema


getEventByName

Same as getEvent but accepts a event name instead of ID. (2 requests)

OptionTypeDefault valueDescription
namestring-The event name
HLTV.getEventByName({ name: "IEM Katowice 2019" }).then(res => {
    ...
})

See getEvent schema


getPastEvents

Parses the info from the hltv.org/events/archive page (1 request per page of results)

OptionTypeDefault valueDescription
eventTypeEventType?-Event type e.g. EventSize.Major, EventSize.LocalLAN
startDatestring?--
endDatestring?--
prizePoolMinnumber?-Minimum prize pool (USD$)
prizePoolMaxnumber?-Maximum prize pool (USD$)
attendingTeamIdsnumber[]?--
attendingPlayerIdsnumber[]?--
delayBetweenPageRequestsnumber?0Used to prevent CloudFlare throttling (ms)
// ! BE CAREFUL, THIS CAN MAKE A LOT OF REQUESTS IF THERE ARE A LOT OF PAGES
HLTV.getPastEvents({ startDate: '2019-01-01', endDate: '2019-01-10' }).then(res => {
    ...
})

See schema


getResults

Parses the info from the hltv.org/results page (1 request per page of results)

OptionTypeDefault valueDescription
startDatestring?--
endDatestring?--
matchTypeResultMatchType?--
stars1 | 2 | 3 | 4 | 5--
mapsGameMap[]?--
countriesstring[]--
bestOfXBestOfFilter?--
contentFiltersContentFilter?--
eventIdsnumber[]?--
playerIdsnumber[]?--
teamIdsnumber[]?--
gameGameType?--
delayBetweenPageRequestsnumber?0Used to prevent CloudFlare throttling (ms)
// ! BE CAREFUL, THIS CAN MAKE A LOT OF REQUESTS IF THERE ARE A LOT OF PAGES
HLTV.getResults({ eventIds: [1617], bestOfX: [BestOfFilter.BO3] }).then(res => {
    ...
})

See schema

getNews

Parses the info from the hltv.org/news/archive/ page (1 request)

OptionTypeDefault ValueDescription
year2005 | 2006 | 2007 | 2008 | 2009 | 2010 | 2011 | 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022-If you specify a year you must specify a month as well
month'january' | 'february' | 'march' | 'april' | 'may' | 'june' | 'july' | 'august' | 'september' | 'october' | 'november' | 'december'-If you specify a month you must specify a year as well
eventIdsnumber[]?--
// If you don't provide a filter the latest news will be parsed
HLTV.getNews()
HLTV.getNews({ eventIds: [3491] })
HLTV.getNews({ year: 2020, month: 'may' }).then((res) => {
  ...
})

See schema

connectToScorebot

Presents an interface to receive data when the HLTV scorebot updates

OptionTypeDefault ValueDescription
idnumber-The match ID
onScoreboardUpdatefunction?-Callback that is called when there is new scoreboard data
onLogUpdatefunction?-Callback that is called when there is new game log data
onFullLogUpdatefunction?-It's still unclear when this is called and with what data, if you find out please let me know!
onConnectfunction?-Callback that is called when a connection with the scorebot is established
onDisconnectfunction?-Callback that is called when the scorebot disconnects
HLTV.connectToScorebot({
  id: 2311609,
  onScoreboardUpdate: (data, done) => {
    // if you call done() the socket connection will close.
  },
  onLogUpdate: (data, done) => {
      ...
  }
})

The onLogUpdate callback is passed an LogUpdate object

The onScoreboardUpdate callback is passed an ScoreboardUpdate object


TEAM_PLACEHOLDER_IMAGE

HLTV.TEAM_PLACEHOLDER_IMAGE
// https://www.hltv.org/img/static/team/placeholder.svg

PLAYER_PLACEHOLDER_IMAGE

HLTV.PLAYER_PLACEHOLDER_IMAGE
// https://static.hltv.org/images/playerprofile/bodyshot/unknown.png
3.5.0

7 months ago

3.4.6

11 months ago

3.4.5

1 year ago

3.4.4

1 year ago

3.4.3

1 year ago

3.4.2

1 year ago

3.4.1

2 years ago

3.4.0

2 years ago

3.3.3

3 years ago

3.3.2

3 years ago

3.3.1

3 years ago

3.3.0

3 years ago

3.2.1

3 years ago

3.2.0

3 years ago

3.1.0

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.25.1

3 years ago

2.25.0

3 years ago

2.24.2

3 years ago

2.24.1

3 years ago

2.24.0

3 years ago

2.23.0

3 years ago

2.22.1

3 years ago

2.22.2

3 years ago

2.22.0

3 years ago

2.21.1

3 years ago

2.21.0

3 years ago

2.20.5

4 years ago

2.20.4

4 years ago

2.20.3

4 years ago

2.20.2

4 years ago

2.20.1

4 years ago

2.20.0

4 years ago

2.19.4

4 years ago

2.19.3

4 years ago

2.19.2

4 years ago

2.19.1

4 years ago

2.19.0

4 years ago

2.18.2

4 years ago

2.18.1

4 years ago

2.18.0

4 years ago

2.17.3

4 years ago

2.17.2

4 years ago

2.17.1

4 years ago

2.17.0

4 years ago

2.16.3

5 years ago

2.16.2

5 years ago

2.16.1

5 years ago

2.16.0

5 years ago

2.15.0

5 years ago

2.14.3

5 years ago

2.14.2

5 years ago

2.14.1

5 years ago

2.14.0

5 years ago

2.13.1

5 years ago

2.13.0

5 years ago

2.12.3

5 years ago

2.12.2

5 years ago

2.12.1

5 years ago

2.11.1

5 years ago

2.12.0

5 years ago

2.11.0

5 years ago

2.10.0

5 years ago

2.9.3

5 years ago

2.9.2

5 years ago

2.9.1

5 years ago

2.9.0

6 years ago

2.8.2

6 years ago

2.8.1

6 years ago

2.8.0

6 years ago

2.7.5

6 years ago

2.7.4

6 years ago

2.7.3

6 years ago

2.7.2

6 years ago

2.7.1

6 years ago

2.7.0

6 years ago

2.6.1

6 years ago

2.6.0

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.1

6 years ago

2.3.0

7 years ago

2.2.3

7 years ago

2.2.2

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

2.0.0-alpha.1

7 years ago

1.2.11

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.1

7 years ago