Comment on page
Read Profile Information
This method allows reading the information of the user. It includes premium status, channel, and login(can be an email).
name | value |
---|---|
url | https://dev.pulsoid.net/api/v1/profile |
method | GET |
scope | profile:read |
name | type | description |
---|---|---|
channel | string | User's channel e.g. twitch.tv/pulsoid |
username | string | Username e.g. pulsoid, [email protected] |
mobile_login | boolean | Indicates whether user did login via mobile client |
heart_rate | boolean | Indicates whether user transmit any heart rate data |
curl --request GET \
--url https://pulsoid.net/api/v1/profile \
--header 'Authorization: Bearer 8c4da3ce-7ed7-4a19-a1f1-058498661e45'
{
"channel": "twitch.tv/pulsoid",
"login": "[email protected]"
"mobile_login": true,
"heart_rate": true
}
Last modified 2mo ago