Validation of username can be done by passing the string along with the API.
Input:Any String
Output:JSON
https://www.thesoftbincoder.com/api/validusername/{value}
https://www.thesoftbincoder.com/api/validusername/thesoftbin123
Result:
{"value":true}
Validation of Website URL can be done by passing the Link along with the API.
Input:Any URL
Output:JSON
https://www.thesoftbincoder.com/api/validwebsite/{URL}
https://www.thesoftbincoder.com/api/validwebsite/https://www.cloudhostica.com
Result:
{"value":true}
Validation of Email ID can be done by passing the Email ID along with the API.
Input:Any Email ID
Output:JSON
https://www.thesoftbincoder.com/api/validemail/{Email}
https://www.thesoftbincoder.com/api/validemail/hello@thesoftbincoder.com
Result:
{"value":true}
Validation of IPv4 Address can be done by passing the IPv4 Address along with the API.
Input:Any IPv4 Address
Output:JSON
https://www.thesoftbincoder.com/api/validipv4/{IPv4 Address}
https://www.thesoftbincoder.com/api/validipv4/127.0.0.1
Result:
{"value":true}
Validation of IPv6 Address can be done by passing the IPv6 Address along with the API.
Input:Any IPv6 Address
Output:JSON
https://www.thesoftbincoder.com/api/validipv6/{IPv6 Address}
https://www.thesoftbincoder.com/api/validipv6/2402:8100:282c:4df9:b114:38d5:7df8:bcf9
Result:
{"value":true}
Generate Strong and Random Passwords
Input:none
Output:JSON
https://www.thesoftbincoder.com/api/randompassword
https://www.thesoftbincoder.com/api/randompassword
Result:
{"value":"aWAId4GtX"}
This will help you to convert given Byte Values into Kilo Bytes, Giga Bytes and Tera Bytes
Input:Bytes Values
Output:JSON
https://www.thesoftbincoder.com/api/roundsize/{value}
https://www.thesoftbincoder.com/api/roundsize/20000005222552
Result:
{"value":"18.2 Tb"}
This will help you to generate SEO friendly URL based on the text given.
Input:text
Output:JSON
https://www.thesoftbincoder.com/api/friendlyurl/{text}
https://www.thesoftbincoder.com/api/friendlyurl/the softbincoder
Result:
{"value":"the-softbincoder"}
Convert RGB color Codes to euivalent Hexa Color Codes Easily.
Input:rgb value
Output:JSON
https://www.thesoftbincoder.com/api/rgb2hex/{R}/{G}/{B}
https://www.thesoftbincoder.com/api/rgb2hex/23/34/111
Result:
{"value":"#17226f"}
Convert Hexa color Codes to euivalent RGB Color Codes Easily. You must enter the code without '#'
Input:Hexa value
Output:JSON
https://www.thesoftbincoder.com/api/hex2rgb/{value}
https://www.thesoftbincoder.com/api/hex2rgb/17226f
Result:
{"value":["23,34,111"]}
This will help you to generate Clen URLs Easily.
Input:URL
Output:JSON
https://www.thesoftbincoder.com/api/cleanurl/{URL}
https://www.thesoftbincoder.com/api/cleanurl/www.helo.com
Result:
{"value":"helo.com"}
This will return number of days in a given month.
Input:Month
Output:JSON
https://www.thesoftbincoder.com/api/daysinmonth/{month}
https://www.thesoftbincoder.com/api/daysinmonth/4
Result:
{"value":30}
Generate hash for the given password strings.
Input:password
Output:JSON
https://www.thesoftbincoder.com/api/passwordhash/{password}
https://www.thesoftbincoder.com/api/passwordhash/2323jsdfsdf2234234
Result:
{"value":"387f812d31be651331a1aee026f885f2"}
Help you to generate random filenames based on the value given.
Input:filename
Output:JSON
https://www.thesoftbincoder.com/api/randomfilename/{filename}
https://www.thesoftbincoder.com/api/randomfilename/coolman
Result:
{"value":"07ac39222fd15ad4.coolman"}
Help you to generate unique string based on the given length.
Input:length
Output:JSON
https://www.thesoftbincoder.com/api/unique/{length}
https://www.thesoftbincoder.com/api/unique/12
Result:
{"value":"gkaIve4QCqSO"}
Help you to generate unique UUID
Input:none
Output:JSON
https://www.thesoftbincoder.com/api/uuid
https://www.thesoftbincoder.com/api/uuid
Result:
{"value":"4ca52d9d-d444-46f4-a6a0-55969c0fcd9c"}
Generate Slug which is SEO friendly. Pass a text and this will return slug for the given text.
Input:text
Output:JSON
https://www.thesoftbincoder.com/api/slug/text
https://www.thesoftbincoder.com/api/slug/hello all i am fine
Result:
{"value":"hello-all-i-m-fine"}