Skip to main content

Create Password

Create a password string.

URL

https://api.excelapi.org/other/create-password

Configuration

ConfigurationRequiredDescription
lengthPassword length. Default is 12 characters.
lowercaseUse of lowercase letters
1: Use (default)
0: Do not use
uppercaseUse of uppercase letters
1: Use (default)
0: Do not use
numberUse of numbers
1: Use (default)
0: Do not use
similarUse of similar case
※ "I", "l", "1" etc.
1: Use
0: Do not use (default)
symbolUse of symbols
1: Use (default)
0: Do not use
symbol_listSpecifies the symbol to be used when the symbol is used.
Default is !@#$%^&*+_-= symbols only.

Example

サンプル

B1: Default

=WEBSERVICE("https://api.excelapi.org/other/create-password")

B2: 16 characters

=WEBSERVICE("https://api.excelapi.org/other/create-password?length=16")

B3: 16 characters+specific symbols

=WEBSERVICE("https://api.excelapi.org/other/create-password?length=16&symbol_list="&ENCODEURL("@#"))

B4: 16 characters+lower-case only

=WEBSERVICE("https://api.excelapi.org/other/create-password?length=16&lowercase=1&uppercase=0&number=0&similar=1&symbol=0")
info

This function does not log to this site.

tip

The WEBSERVICE function uses a cache if a request is sent to the same URL within a certain period of time (approximately 5 seconds).
If you want to generate multiple passwords with the same generation conditions, try adding appropriate parameters.
In the following example, the row and column numbers are sent using trash. (ExcelAPI treats trash as if it does not exist.)

=WEBSERVICE("https://api.excelapi.org/other/create-password?trash="&ROW()&COLUMN())