Get the current bio

Endpoint; /me/bio
Response type: text

Python example:

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