Endpoint; /me/replunboost
Response type: json
POST body parameters required-
id
: String
Python example:
import requests, json
token = "XXXX"
api = "https://replit-oauth.coolcodersj.repl.co/api/v1"
r = requests.post(f"{api}/me/replunboost", headers={
"Authorization": f"Bearer {token}"
}, data=json.dumps({
"input": {
"id" : "XXXX"
}
}))