Rest Api of the instant-username-search project.
Check the client repo here: instant-username-search
You need maven installed on your system to run the project. Cd into the project directory and run the following command to start the application. Rest API will accept requests at port 8080.
mvn spring-boot:run
- Request to
/check/github/torvalds
will check the availability of the usernametorvalds
on GitHub.
{
"service": "GitHub",
"url": "https://www.github.com/torvalds",
"available": false,
"message": null
}
- Request to
/services/getAll
will list the all available websites to check for username.
[
{
"service": "Instagram",
"endpoint": "/instagram/{username}"
},
{
"service": "Twitter",
"endpoint": "/twitter/{username}"
},
{
"service": "Facebook",
"endpoint": "/facebook/{username}"
},
{
"service": "YouTube",
"endpoint": "/youtube/{username}"
},
{
"service": "Blogger",
"endpoint": "/blogger/{username}"
},
{
"service": "Reddit",
"endpoint": "/reddit/{username}"
}
]
Developed by Umut Canbolat.
This project is licensed under the GNU General Public License v3.0 (GPL 3.0) - see the LICENSE file for details