Retrieve basic profile info
GET
/meReturns basic information about the user who authenticated
Request
None
Request samples
Responses
Success(200)
Not Authenticated(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
boolean
optional
Example:
true
errors
array[string]
optional
data
object
optional
username
string
optional
Example:
@username
url
string
optional
Example:
https://lnk.bio/username
profile_pic
string
optional
Example:
https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png
Example
{
"status": true,
"errors": [
null
],
"data": {
"username": "@username",
"url": "https://lnk.bio/username",
"profile_pic": "https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png"
}
}
Last modified: 7 months ago