Categories: ComputingDevelopment

Stringgy a free use string and int generator API

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

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago