Stringgy is a free to use string and int generator API with customizable lengths, types, characters and amounts.
With Stringgy you have the option for character length of string or int, the amount to return and even the ability to set characters to choose from when generating the random strings. Use the parameter chars
for custom characters eg. chars=ABC
to only generate from the letters A, B and C.
If you don’t want to set the characters you can choose from a preset type
which are:
- ALL
- ALLNOSYMBOLS (default)
- NUMBERS
- LOWERCASE
- UPPERCASE
- SYMBOLS
Character length is set with length
and the amount to return is amount
.
Example usage
Two 8 digit numbers: https://api.stringgy.com/?length=8&amount=2&type=NUMBERS
8 character string from all with no symbols: https://api.stringgy.com/?length=8
Four 64 character strings made up from only ABC123: https://api.stringgy.com/?length=64&amount=4&chars=ABC123
One 12 characters long string made up from symbols only: https://api.stringgy.com/?length=12&type=SYMBOLS