SkillAgentSearch skills...

Valorant.go

VALORANT client API wrapper written in Go w/ fasthttp

Install / Use

/learn @jckli/Valorant.go
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

valorant.go

disclaimer: this wrapper is still a big work in progress and doesn't cover every endpoint yet. use at own risk.

an golang API wrapper for VALORANT's client/unofficial API written with fasthttp

getting started

installing

this assumes you have a working go envirenment, if not please see this page first

go get github.com/jckli/valorant.go

usage

import the package into your project and then login to a valorant account.

example:

package main

import (
    "github.com/jckli/valorant.go"
    "github.com/jckli/valorant.go/game"
)

func main() {
	client, err := valorant.New("username", "password")
    if err != nil {
        panic(err)
    }
    playerGame, _ := game.GetPlayerGame(client, client.UserInfo.UserId)
    gameInfo, _ := game.GetGameInfo(client, playerGame.MatchID)
}

notes

  • dont use this to make anything that is against the tos
View on GitHub
GitHub Stars4
CategoryDevelopment
Updated7mo ago
Forks0

Languages

Go

Security Score

82/100

Audited on Sep 11, 2025

No findings