https://web-production-32d8.up.railway.app/api/
Supports request methods: POST
https://web-production-32d8.up.railway.app/api/card
https://web-production-32d8.up.railway.app/api/profile
The card method supports the following options:
False/True
Use a name card or a character card. Only for the second template.False/True
Display UID or not.False/True
Use splash art of character costumes.1,2,3,5 or 7
Template typeThe profile method supports the following options:
import requests
url = "https://web-production-32d8.up.railway.app/api/card"
data = {"uid": 724281429}
resp = requests.post(url, data=data)
print(resp.json())
var url = "https://web-production-32d8.up.railway.app/api/card";
var xhr = new XMLHttpRequest();
xhr.open("POST", url);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
console.log(xhr.status);
console.log(xhr.responseText);
}};
var data = {"uid": 757562748};
xhr.send(data);