NEED [CustomAPI] Battlefield 5 stats from the Battlefieldtracker.com

So Ive been trying to find this and couldn’t. I want to create a custom command to call out certain stats from my battlfieldtracker (Revives, Kills, KD, ect). This would be for xbox by the way.

would also be very interested in this also

You can technically make your own with the URLFetch variable until someone builds something:

$(eval const {data: {stats}} = $(urlfetch json https://api.battlefieldtracker.com/api/v1/bfv/profile/origin/$(1)); `Rank: ${stats.rank.displayValue}, Score/min: ${stats.scorePerMinute.displayValue}, K/D: ${stats.kdRatio.displayValue}, Kills/min: ${stats.killsPerMinute.displayValue}, Win %: ${stats.wlPercentage.displayValue}`)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.