π₯Users
The user profile endpoint
This users endpoint allows you to retrieve data about Digitomize's users.
You can get the following data about a Digitomize user:
personal details
social links
ratings
github
Retrieve user data
GET
https://www.v2api.digitomize.com /user/signup
This endpoint allows you to create a new user in the Digitomize platform
Path Parameters
Name
Type
Description
username*
String
Digitomize username
{
"message":"User not found",
"error":"User not found"
}
For example,
The request URL is https://www.v2api.digitomize.com/user/profile/priyanshutrivedi818
The response will be:
{
"personal_data": {
"username": "priyanshutrivedi818",
"name": "Priyanshu Trivedi",
"picture": "https://lh3.googleusercontent.com/a/ACg8ocKHINLEGHdSrFO_D1TqPMqX3UhLKuYfYKNCN5QCiU-3=s96-c",
"email_verified": true,
"email": "[email protected]",
"bio": null,
"dateOfBirth": null,
"phoneNumber": null,
"role": 1,
"skills": []
},
"github": {
"data": null
},
"social": {
"linkedin": null,
"instagram": null,
"twitter": null
},
"ratings": {
"digitomize_rating": 1667,
"codechef": {
"username": "priyanshu_triv",
"rating": 2005,
"attendedContestsCount": 53,
"badge": "5 star",
"fetchTime": 1703946843104
},
"leetcode": {
"username": "priyanshu_triv",
"rating": 2060,
"attendedContestsCount": 28,
"badge": "Knight",
"fetchTime": 1703946843104
},
"codeforces": {
"username": null,
"rating": 1667,
"attendedContestsCount": null,
"badge": null,
"fetchTime": 1703946843104
}
}
}
Feel free to use this API. If you have any issues, you can raise it in our Discord channel.
Last updated