Get the current name

Endpoint; /me/fullName
Response type: text

Python example:

import requests
token = "XXXX"
api = "https://replit-oauth.coolcodersj.repl.co/api/v1"
name= requests.post(f"{api}/me/fullName", headers={
    "Authorization": f"Bearer {token}"
})
name = name.text