Basic Types
Person
Copy
{
"type": "title",
"params": [gender = null|'male'|'female']
} // 'Ms.'
{"type": "titleMale"} // 'Mr.'
{"type": "titleFemale"} // 'Ms.'
{"type": "suffix"} // 'Jr.'
{
"type": "name",
"params": [gender = null|'male'|'female']
} // 'Dr. Zane Stroman'
{
"type": "firstName",
"params": [gender = null|'male'|'female']
} // 'Maynard'
{"type": "firstNameMale"} // 'Maynard'
{"type": "firstNameFemale"} // 'Rachel'
{"type": "lastName"} // 'Zulauf'
Address
Copy
{"type": "cityPrefix"} // 'Lake'
{"type": "secondaryAddress"} // 'Suite 961'
{"type": "state"} // 'NewMexico'
{"type": "stateAbbr"} // 'OH'
{"type": "citySuffix"} // 'borough'
{"type": "streetSuffix"} // 'Keys'
{"type": "buildingNumber"} // '484'
{"type": "city"} // 'West Judge'
{"type": "streetName"} // 'Keegan Trail'
{"type": "streetAddress"} // '439 Karley Loaf Suite 897'
{"type": "postcode"} // '17916'
{"type": "address"} // '8888 Cummings Vista Apt. 101, Susanbury, NY 95473'
{"type": "country"} // 'Falkland Islands (Malvinas)'
{
"type": "latitude",
"params": [min = -90, max = 90]
} // 77.147489
{
"type": "longitude",
"params": [min = -180, max = 180]
} // 86.211205
PhoneNumber
Copy
{"type": "phoneNumber"} // '827-986-5852'
{"type": "phoneNumberWithExtension"} // '201-886-0269 x3767'
{"type": "tollFreePhoneNumber"} // '(888) 937-7238'
{"type": "e164PhoneNumber"} // '+27113456789'
Company
Copy
{"type": "catchPhrase"} // 'Monitored regional contingency'
{"type": "bs"} // 'e-enable robust architectures'
{"type": "company"} // 'Bogan-Treutel'
{"type": "companySuffix"} // 'and Sons'
{"type": "jobTitle"} // 'Cashier'
Text
Copy
{
"type": "realText",
"params": [maxNbChars = 200, indexSize = 2]
}
// "And yet I wish you could manage it?) 'And what are they made of?' Alice asked in a shrill, passionate voice. 'Would YOU like cats if you were never even spoke to Time!' 'Perhaps not,' Alice replied."
{
"type": "realTextBetween"
"params": [minNbChars = 160, maxNbChars = 200, indexSize = 2]
}
// "VERY short remarks, and she ran across the garden, and I had not long to doubt, for the end of the bottle was NOT marked 'poison,' it is right?' 'In my youth,' Father William replied to his ear."
On this page
Assistant
Responses are generated using AI and may contain mistakes.