Basic
Boolean
True or False value.
API Endpoint (click to try):
Function name(s):
booleancore_random.r_bool_text
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
likelyhood |
Number |
[1, 100] |
Chance of True |
Example output:
{
"Boolean": {
"r_bool_text": "true"
}
}
Empty JSON Array
Empty JSON array value.
API Endpoint (click to try):
Function name(s):
empty_json_arraygenerics_random.r_empty_array
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
Example output:
{
"Empty JSON Array": {
"r_empty_array": "[]"
}
}
Empty JSON Object
Empty JSON object value.
API Endpoint (click to try):
Function name(s):
empty_json_objectgenerics_random.r_empty_object
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
Example output:
{
"Empty JSON Object": {
"r_empty_object": "{}"
}
}
Float
A random decimal number between -9007199254740992 and 9007199254740992 with 4 decimals as default.
API Endpoint (click to try):
Function name(s):
floatcore_random.r_float
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
fixed |
Number |
|
Number of decimals |
min |
Number |
|
Minimum |
max |
Number |
|
Maximum |
Example output:
{
"Float": {
"r_float": "3444905073116726.5945"
}
}
Integer
A random integer between -9007199254740992 and 9007199254740992.
API Endpoint (click to try):
Function name(s):
integercore_random.r_integer
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
min |
Number |
|
Minimum |
max |
Number |
|
Maximum |
Example output:
{
"Integer": {
"r_integer": "-4054543709598844"
}
}
Natural
All the positive integers (whole numbers) 1, 2, 3 ....
API Endpoint (click to try):
Function name(s):
naturalcore_random.r_natural
Locales supported:
Not a locale specific domain.
Parameters:
Name |
Type |
Bound Input |
Description |
min |
Number |
|
Minimum |
max |
Number |
|
Maximum |
Example output:
{
"Natural": {
"r_natural": "3189327692281844"
}
}
Repeater
Simple repeater, that echoes back whatever is input.
API Endpoint (click to try):
Function name(s):
repeatercore_random.r_repeater
Parameters:
Name |
Type |
Bound Input |
Description |
string |
Text |
|
The text to repeat. |
Example output:
{
"Repeater": {
"r_repeater": "a string"
}
}