You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
register your own profile on our website (link above).
then login and you're ready to fetch endpoints and check your stats.
Examples
package main
import"scarlex/scarlex"import"fmt"import"encoding/json"funcmain() {
Data:=scarlex.MakeRequest("https://scarlex.org/api/v1/progressbar?max=100&value=69&size=100&style=3", "A V I X I T Y", "daddyscar")
varresultmap[string]interface{}
json.Unmarshal([]byte(Data), &result)
fmt.Println(result["message"] , result["percentage"])
}