Random username with timestamp | {{$internet.userName}}_{{$date.now}} | "Kattie_Rice64_2024-09-04T05:51:42.413Z" | Use {{$internet.userName}} to generate a random username, use {{$date.now}} to get the current time, and concatenate them using template literals. |
Random email address with company domain | {{person.lastName}}@{{$company.name | lower}}.com | "Kole.Haag@schmidt-schoen.com" | Use {{$person.firstName}} , {{$person.lastName}} to generate a random name, use {{$company.name | lower}} to generate a company name, convert it to lowercase, and concatenate them to form an email address. |
Random address with street number and apartment number | {{$location.buildingNumber}} {{$location.street}}, Apt. {{$number.int(min=1,max=1000)}}, {{$location.city}}, {{$location.state(abbreviated=true)}} {{$location.zipCode}} | "723 Klein Inlet, Apt. 814, North Myron, DE 67605" | Use multiple methods to generate a detailed address, including street number, street name, apartment number, city, state, and zip code. |
Random company name with industry and company type | {{$company.buzzAdjective}} {{$company.buzzNoun}} {{$company.name}} | "web-enabled architectures Fay Inc" | Use the company method to generate a company name with industry description and company type. |
Random date within the past year | {{$date.past(years=1)}} | "2023-10-24T09:25:24.109Z" | Use the {{$date.past(years=1)}} method to generate a random date within the past year. |
Random price with currency symbol | {{$finance.currencySymbol}}{{$commerce.price}} | "KM12.89" | Use {{$finance.currencySymbol}} to generate a random currency symbol, use {{$commerce.price} to generate a random price, and concatenate them. |
Random product description | {{$commerce.productAdjective}} {{$commerce.productMaterial}} {{$commerce.product}} - {{$lorem.sentences(min=2,max=4)}} | "Small Wooden Pizza - Thema copiose dens adinventitias a. Causa uxor terreo defleo vitiosus animi. Ademptio possimus decet considero absorbeo sursum rem circumvenio antiquus curatio. Adipisci addo tredecim carbo." | Use {{$commerce.productAdjective}} and {{$lorem.sentences(min=2,max=4)}} methods to generate text containing product features and descriptions. |
Random sentence with hashtag | #{{$lorem.slug(min=1,max=3)}} {{$lorem.sentence(min=1,max=3)}} | "#provident-quidem-tempore Vita comprehendo id." | Use {{$lorem.slug(min=1,max=3)}} to generate a random hashtag and concatenate it before the sentence. |
Random IP address with port number | {{$internet.ipv4}}::{{$number.int(min=1024,max=65535)}} | "246.222.133.63::56332" | Use {{$internet.ipv4}} to generate a random IP address, use {{$number.int(min=1024,max=65535)}} to generate a port number, and concatenate them. |
Random URL with query parameters | {{$internet.url}}?{{$lorem.slug}}={{$lorem.word}} | "https://nippy-bob.name/?nemo-provident-clementia=blandior" | Use {{$internet.url}} , {{$lorem.slug}} , and {{$lorem.word}} to generate a random URL with query parameters. |
Random file path | /path/to/{{$lorem.slug}}/{{$system.fileName}} | "/path/to/caritas-solio-vilicus/across.img" | Use {{$lorem.slug}} , {{$system.fileName}} , and string concatenation to generate a random file path. |
Random database table name | table_{{$string.alphanumeric(length=5)|lower}} | "table_brxlr" | Use {{$string.alphanumeric(length=5)|lower}} to generate a random string and concatenate it to form a database table name. |
Random HTML code snippet | <p>{{$lorem.sentence}} <a href="{{$internet.url}}">{{$lorem.word}}</a></p> | "Calamitas velociter una succurro depopulo. comminor" | Use {{$lorem.sentence}} and {{$internet.url}} to generate a random HTML code snippet containing a link. |
Random HTTP request header | { "User-Agent": {{$internet.userAgent}}, "Referer": {{$internet.url}} } | { "User-Agent": Opera/13.25 (Macintosh; Intel Mac OS X 10.7.9 U; HE Presto/2.9.171 Version/12.00), "Referer": https://queasy-dusk.info/ } | Use {{$internet.userAgent}} and {{$internet.url}} to generate a random HTTP request header containing User-Agent and Referer. |