Words Generator
The words type
will return a string of words.
This type requires two additional tags:
length
- Words in the returned IDstyle
- The style of the words generated.
Style options:
slug
- Slug-style, best for pass phrases. (Default)title
- Formatted as a title.formal
- Same as title, but without spacing.
Example Input
{
"username": "Username",
"token": "Token",
"type": "words",
"length": "5",
"style": "slug"
}
Example Output
Slug
{
"id": "some-chilly-clumsy-huge-kite"
}
Title
{
"id": "Eager Cold Better Moldy Pager"
}
Formal
{
"id": "SaltyWonderfulShaggyMoldyTeacher"
}