General Tools
tinyfn.io
Provides functions to check basic properties of numbers such as parity, primality, and sign.
ENDPOINT 1
https://tinyfn.io/mcp/all
Known tools 572
is_evenCheck if a number is even.
is_oddCheck if a number is odd.
is_primeCheck if a number is prime.
is_positiveCheck if a number is positive.
is_negativeCheck if a number is negative.
is_zeroCheck if a number is zero.
is_integerCheck if a number is an integer.
is_divisibleCheck if a number is divisible by another number.
is_perfect_squareCheck if a number is a perfect square.
is_fibonacciCheck if a number is a Fibonacci number.
factorialCalculate the factorial of a number.
fibonacciGet the nth Fibonacci number.
gcdCalculate the greatest common divisor.
lcmCalculate the least common multiple.
absolute_valueGet the absolute value of a number.
square_rootCalculate the square root of a number.
powerCalculate base raised to the power of exponent.
percentageCalculate what percentage value is of total.
averageCalculate the average of a list of numbers.
round_numberRound a number to specified decimal places.
clampClamp a number within a range.
distanceCalculate Euclidean distance between two points.
sinCalculate the sine of an angle.
cosCalculate the cosine of an angle.
tanCalculate the tangent of an angle.
deg_to_radConvert degrees to radians.
rad_to_degConvert radians to degrees.
addAdd two or more numbers together.
subtractSubtract b from a.
multiplyMultiply two or more numbers together.
divideDivide a by b.
moduloCalculate a modulo b (remainder of a divided by b).
logCalculate logarithm.
log10Calculate base-10 logarithm.
log2Calculate base-2 logarithm.
expCalculate e raised to the power of number.
floorRound down to nearest integer.
ceilRound up to nearest integer.
minimumFind the minimum value.
maximumFind the maximum value.
sum_numbersCalculate the sum of numbers.
signGet the sign of a number (-1, 0, or 1).
truncateTruncate to integer (remove decimal part).
hypotenuseCalculate the hypotenuse of a right triangle.
cubeCalculate the cube of a number.
cube_rootCalculate the cube root of a number.
squareCalculate the square of a number.
nth_rootCalculate the nth root of a number.
compareCompare two numbers (e.g., is 0.9 greater than 0.11?).
compare_decimalsCompare decimal numbers with detailed explanation (handles 0.9 vs 0.11 correctly).
rank_numbersRank a list of numbers from largest to smallest (or vice versa).
is_betweenCheck if a number is between two bounds.
reverse_stringReverse a string.
uppercaseConvert text to uppercase.
lowercaseConvert text to lowercase.
capitalizeCapitalize the first letter of each word.
title_caseConvert text to title case.
sentence_caseConvert text to sentence case.
camel_caseConvert text to camelCase.
snake_caseConvert text to snake_case.
kebab_caseConvert text to kebab-case.
pascal_caseConvert text to PascalCase.
string_lengthGet the length of a string.
word_countCount words in text.
trimTrim whitespace from text.
truncate_2Truncate text to a specified length.
padPad text to a specified length.
repeatRepeat text a specified number of times.
replaceReplace occurrences in text.
containsCheck if text contains a substring.
starts_withCheck if text starts with a prefix.
ends_withCheck if text ends with a suffix.
splitSplit text by delimiter.
joinJoin items with a delimiter.
slugConvert text to URL-friendly slug.
is_palindromeCheck if text is a palindrome.
count_charCount occurrences of a character (e.g., how many 'r' in 'strawberry').
count_substringCount occurrences of a substring.
count_all_charsCount occurrences of each character in text.
remove_whitespaceRemove all whitespace from text.
normalize_whitespaceNormalize whitespace (multiple spaces to single).
is_emptyCheck if text is empty or whitespace only.
extract_numbersExtract all numbers from text.
extract_emailsExtract all email addresses from text.
extract_urlsExtract all URLs from text.
celsius_to_fahrenheitConvert Celsius to Fahrenheit.
fahrenheit_to_celsiusConvert Fahrenheit to Celsius.
celsius_to_kelvinConvert Celsius to Kelvin.
kelvin_to_celsiusConvert Kelvin to Celsius.
meters_to_feetConvert meters to feet.
feet_to_metersConvert feet to meters.
kilometers_to_milesConvert kilometers to miles.
miles_to_kilometersConvert miles to kilometers.
inches_to_centimetersConvert inches to centimeters.
centimeters_to_inchesConvert centimeters to inches.
kilograms_to_poundsConvert kilograms to pounds.
pounds_to_kilogramsConvert pounds to kilograms.
ounces_to_gramsConvert ounces to grams.
grams_to_ouncesConvert grams to ounces.
stone_to_kilogramsConvert stone to kilograms.
liters_to_gallons_usConvert liters to US gallons.
gallons_us_to_litersConvert US gallons to liters.
liters_to_gallons_ukConvert liters to UK gallons.
gallons_uk_to_litersConvert UK gallons to liters.
milliliters_to_fluid_ouncesConvert milliliters to US fluid ounces.
cups_to_millilitersConvert US cups to milliliters.
milliliters_to_cupsConvert milliliters to US cups.
square_meters_to_square_feetConvert square meters to square feet.
square_feet_to_square_metersConvert square feet to square meters.
acres_to_hectaresConvert acres to hectares.
mph_to_kphConvert miles per hour to kilometers per hour.
kph_to_mphConvert kilometers per hour to miles per hour.
meters_per_second_to_mphConvert meters per second to miles per hour.
knots_to_kphConvert knots to kilometers per hour.
bytes_to_humanConvert bytes to human-readable format.
kilobytes_to_megabytesConvert kilobytes to megabytes.
megabytes_to_gigabytesConvert megabytes to gigabytes.
decimal_to_binaryConvert decimal to binary.
binary_to_decimalConvert binary to decimal.
decimal_to_hexadecimalConvert decimal to hexadecimal.
hexadecimal_to_decimalConvert hexadecimal to decimal.
decimal_to_octalConvert decimal to octal.
hex_to_rgbConvert hex color to RGB.
rgb_to_hexConvert RGB to hex color.
hours_to_minutesConvert hours to minutes.
minutes_to_secondsConvert minutes to seconds.
seconds_to_hmsConvert seconds to hours:minutes:seconds.
generate_uuidGenerate UUID(s).
generate_uuid_v7Generate UUID v7 (time-ordered).
random_numberGenerate random integer(s).
random_floatGenerate random float(s).
random_stringGenerate random string(s).
generate_passwordGenerate secure password(s).
generate_tokenGenerate cryptographically secure token.
generate_hashGenerate hash of text.
generate_loremGenerate lorem ipsum text using Faker.
generate_colorGenerate random color(s).
roll_diceRoll dice.
flip_coinFlip a coin.
shuffle_listShuffle a list of items.
pick_randomPick random item(s) from a list.
generate_sequenceGenerate a number sequence.
validate_emailValidate an email address.
validate_urlValidate a URL.
validate_phoneValidate a phone number.
validate_credit_cardValidate a credit card number using Luhn algorithm.
validate_uuidValidate a UUID.
validate_ipValidate an IP address (v4 or v6).
validate_macValidate a MAC address.
validate_jsonValidate JSON syntax.
validate_hexValidate a hexadecimal string.
validate_base64Validate a base64 string.
validate_alphanumericCheck if text is alphanumeric.
validate_password_strengthCheck password strength.
validate_dateValidate a date string.
validate_domainValidate a domain name.
validate_semverValidate a semantic version string.
get_nowGet current date and time.
convert_timestampConvert Unix timestamp to date.
convert_timestamp_msConvert Unix timestamp (milliseconds) to date.
date_to_timestampConvert date to Unix timestamp.
format_dateFormat a date string.
parse_dateParse a date string.
add_timeAdd time to a date.
subtract_timeSubtract time from a date.
date_diffCalculate difference between two dates.
is_leap_yearCheck if a year is a leap year.
days_in_monthGet the number of days in a month.
week_numberGet the ISO week number of a date.
day_of_yearGet the day of year for a date.
is_weekendCheck if a date is a weekend.
calculate_ageCalculate age from birthdate.
relative_timeGet relative time description (e.g., '2 days ago').
current_timeGet current time in specified timezone.
convert_timezoneConvert datetime between timezones.
time_differenceCalculate difference between two datetimes.
add_time_2Add time to a datetime.
subtract_time_2Subtract time from a datetime.
start_of_periodGet the start of a time period.
end_of_periodGet the end of a time period.
is_leap_year_2Check if a year is a leap year.
days_in_month_2Get the number of days in a month.
week_number_2Get the ISO week number for a date.
get_quarterGet the quarter for a date.
business_daysCount business days between two dates (excluding weekends).
add_business_daysAdd business days to a date.
calculate_age_2Calculate age from birthdate.
list_timezonesList all available timezone abbreviations.
unix_to_datetimeConvert Unix timestamp to datetime.
datetime_to_unixConvert datetime to Unix timestamp.
base64_encodeEncode text to base64.
base64_decodeDecode base64 to text.
url_encodeURL encode text.
url_decodeURL decode text.
html_encodeHTML encode text (escape special characters).
html_decodeHTML decode text (unescape special characters).
hex_encodeEncode text to hexadecimal.
hex_decodeDecode hexadecimal to text.
binary_encodeEncode text to binary.
binary_decodeDecode binary to text.
ascii_encodeGet ASCII codes for text.
ascii_decodeConvert ASCII codes to text.
rot13Apply ROT13 cipher (encoding and decoding are the same operation).
morse_encodeEncode text to Morse code.
morse_decodeDecode Morse code to text.
json_minifyMinify JSON (remove whitespace).
json_prettifyPrettify JSON (format with indentation).
jwt_decodeDecode JWT token (without signature verification).
punycode_encodeEncode Unicode to Punycode (for internationalized domain names).
punycode_decodeDecode Punycode to Unicode.
hash_md5Generate MD5 hash of text.
hash_sha1Generate SHA-1 hash of text.
hash_sha256Generate SHA-256 hash of text.
hash_sha384Generate SHA-384 hash of text.
hash_sha512Generate SHA-512 hash of text.
hash_sha3_256Generate SHA3-256 hash of text.
hash_sha3_512Generate SHA3-512 hash of text.
hash_blake2bGenerate BLAKE2b hash of text.
hash_blake2sGenerate BLAKE2s hash of text.
hmac_sha256Generate HMAC-SHA256.
hmac_sha512Generate HMAC-SHA512.
hmac_md5Generate HMAC-MD5.
compare_hashesCompare two hashes in constant time (timing-safe).
hash_allGenerate hashes using multiple algorithms at once.
hash_crc32Calculate CRC32 checksum.
hash_adler32Calculate Adler-32 checksum.
identify_hashIdentify the possible algorithm of a hash based on its format.
file_checksum_guideGet command-line instructions for file checksums.
generate_hmacGenerate HMAC signature.
md5_checksumGenerate MD5 checksum.
sha1_checksumGenerate SHA1 checksum.
sha256_checksumGenerate SHA256 checksum.
sha512_checksumGenerate SHA512 checksum.
password_entropyCalculate password entropy (bits of randomness).
random_bytesGenerate cryptographically secure random bytes.
constant_time_compareCompare two strings in constant time (timing-safe).
verify_hashVerify a hash matches the text.
crc32_checksumCalculate CRC32 checksum.
adler32_checksumCalculate Adler-32 checksum.
analyze_passwordAnalyze password strength and characteristics.
generate_password_2Generate a secure random password.
generate_passphraseGenerate a passphrase from random words.
generate_pinGenerate a random PIN.
estimate_hash_timeEstimate time to crack a password using brute force.
is_common_passwordCheck if password is in common password list.
suggest_improvementsSuggest improvements for a password.
leetspeak_passwordConvert a password to leetspeak (for demonstration, not security).
generate_memorableGenerate a memorable password based on a pattern.
validate_ip_2Validate if a string is a valid IP address.
ip_infoGet detailed information about an IP address.
ip_to_integerConvert IP address to integer.
integer_to_ipConvert integer to IP address.
network_infoGet information about a network.
ip_in_networkCheck if an IP address is within a network.
subnet_calculatorCalculate subnets from a network.
supernet_calculatorCalculate the supernet that contains all given networks.
range_to_cidrConvert an IP range to CIDR notation.
expand_cidrExpand a CIDR to list of individual IPs.
is_private_ipCheck if an IP address is private (RFC 1918 for IPv4).
ipv4_to_ipv6Convert IPv4 address to IPv6 mapped address.
ipv6_to_ipv4Extract IPv4 address from IPv6 mapped address.
ip_to_binaryConvert IP address to binary representation.
netmask_to_cidrConvert subnet mask to CIDR prefix length.
cidr_to_netmaskConvert CIDR prefix length to subnet mask.
validate_json_2Validate if a string is valid JSON.
prettify_jsonPrettify (format) a JSON string.
minify_jsonMinify (compress) a JSON string.
get_keysGet all keys from a JSON object.
get_valuesGet all values from a JSON object.
get_json_pathExtract a value from JSON using a path expression.
flatten_jsonFlatten a nested JSON object.
unflatten_jsonUnflatten a flat JSON object back to nested structure.
json_diffCompare two JSON objects and find differences.
merge_jsonMerge two JSON objects.
json_statsGet statistics about a JSON structure.
get_json_typeGet the type of a JSON value.
json_to_query_stringConvert a JSON object to URL query string.
query_string_to_jsonConvert a URL query string to JSON object.
readability_scoreCalculate readability scores (Flesch-Kincaid, etc.).
extract_keywordsExtract keywords from text based on frequency.
text_similarityCalculate similarity between two texts (Jaccard similarity).
levenshtein_distanceCalculate Levenshtein (edit) distance between two strings.
soundexGenerate Soundex phonetic encoding.
metaphoneGenerate Metaphone phonetic encoding.
generate_ngramsGenerate n-grams from text.
basic_sentimentBasic sentiment analysis using word lists.
generate_acronymGenerate acronym from text.
get_initialsGet initials from a name.
mask_textMask text, keeping only start/end characters visible.
lorem_wordsGenerate lorem ipsum words.
smart_title_caseSmart title case (handles articles, prepositions).
remove_duplicate_wordsRemove consecutive duplicate words.
slugifyConvert text to URL-friendly slug.
deslugifyConvert a slug back to readable text.
is_valid_slugCheck if a string is a valid URL slug.
url_encode_2URL encode a string.
url_decode_2URL decode a string.
parse_urlParse a URL into its components.
build_urlBuild a URL from components.
normalize_urlNormalize a URL to a canonical form.
extract_domainExtract domain from a URL.
is_valid_urlValidate if a string is a valid URL.
join_pathJoin path parts safely.
add_query_paramAdd a query parameter to a URL.
remove_query_paramRemove a query parameter from a URL.
filename_safeConvert a string to a safe filename.
to_camel_caseConvert text to camelCase.
to_pascal_caseConvert text to PascalCase.
to_snake_caseConvert text to snake_case.
to_screaming_snake_caseConvert text to SCREAMING_SNAKE_CASE.
to_kebab_caseConvert text to kebab-case.
to_train_caseConvert text to Train-Case.
to_title_caseConvert text to Title Case.
to_sentence_caseConvert text to Sentence case.
to_upper_caseConvert text to UPPERCASE.
to_lower_caseConvert text to lowercase.
swap_caseSwap case of each character.
capitalize_textCapitalize first letter only.
to_dot_caseConvert text to dot.case.
to_path_caseConvert text to path/case.
to_constant_caseConvert text to CONSTANT_CASE (alias for screaming snake).
to_header_caseConvert text to Header-Case (HTTP header style).
to_alternating_caseConvert text to aLtErNaTiNg case.
inverse_caseInverse the case of each character (same as swap).
detect_caseDetect the case style of text.
convert_all_casesConvert text to all case formats at once.
format_numberFormat a number with locale-specific separators.
format_currencyFormat an amount as currency.
format_percentageFormat a number as a percentage.
format_ordinalConvert a number to its ordinal form (1st, 2nd, 3rd, etc.).
number_to_wordsConvert a number to words.
number_to_romanConvert a number to Roman numerals.
roman_to_numberConvert Roman numerals to a number.
format_bytesFormat bytes to human-readable size.
format_phoneFormat a phone number according to country conventions.
format_credit_cardFormat a credit card number with spaces.
format_ssnFormat a Social Security Number.
format_durationFormat seconds as duration.
format_relative_timeFormat seconds as relative time (e.g., '2 hours ago', 'in 3 days').
format_truncateTruncate text to a maximum length.
format_listFormat a list of items with proper grammar.
hex_to_hslConvert hex color to HSL.
hsl_to_hexConvert HSL to hex color.
hex_to_hsvConvert hex color to HSV.
hsv_to_hexConvert HSV to hex color.
hex_to_cmykConvert hex color to CMYK.
cmyk_to_hexConvert CMYK to hex color.
lighten_colorLighten a color by a percentage.
darken_colorDarken a color by a percentage.
saturate_colorIncrease color saturation by a percentage.
desaturate_colorDecrease color saturation by a percentage.
grayscale_colorConvert color to grayscale.
invert_colorInvert a color.
complement_colorGet the complementary color (opposite on color wheel).
triadic_colorsGet triadic colors (three colors equally spaced on color wheel).
analogous_colorsGet analogous colors (adjacent colors on color wheel).
split_complementary_colorsGet split-complementary colors.
tetradic_colorsGet tetradic colors (four colors forming a rectangle on color wheel).
contrast_ratioCalculate contrast ratio between two colors (WCAG).
get_luminanceCalculate relative luminance of a color.
blend_colorsBlend two colors together.
generate_gradientGenerate a gradient between two colors.
generate_shadesGenerate shades (darker variations) of a color.
generate_tintsGenerate tints (lighter variations) of a color.
random_colorGenerate a random color.
is_valid_hexCheck if a string is a valid hex color.
name_to_hexConvert a CSS color name to hex.
cidr_infoGet information about a CIDR range.
subnet_mask_infoGet subnet mask from prefix length.
ip_in_rangeCheck if an IP address is within a CIDR range.
port_infoGet information about a port number.
http_method_infoGet information about an HTTP method.
parse_url_2Parse a URL into its components.
build_url_2Build a URL from components.
ipv4_to_ipv6_2Convert IPv4 address to IPv6 mapped format.
private_ip_rangesGet RFC 1918 private IP address ranges.
haversine_distanceCalculate distance between two coordinates using Haversine formula.
calculate_bearingCalculate bearing (direction) between two coordinates.
calculate_midpointCalculate geographic midpoint between two coordinates.
destination_pointCalculate destination point given start, bearing, and distance.
dms_to_decimalConvert DMS (degrees, minutes, seconds) to decimal degrees.
decimal_to_dmsConvert decimal degrees to DMS (degrees, minutes, seconds).
is_valid_coordinatesCheck if coordinates are valid.
bounding_boxCalculate bounding box around a point.
point_in_polygonCheck if a point is inside a polygon (ray casting algorithm).
geohash_encodeEncode coordinates to geohash.
geohash_decodeDecode geohash to coordinates.
polygon_areaCalculate area of a polygon on Earth's surface.
polyline_lengthCalculate total length of a polyline.
polygon_centroidCalculate centroid of a polygon.
timezone_offsetEstimate timezone offset from longitude (approximate).
sun_positionCalculate approximate sun position (azimuth and elevation).
array_intersectionGet intersection of two arrays.
array_unionGet union of two arrays.
array_differenceGet difference of two arrays (items in array1 not in array2).
array_symmetric_differenceGet symmetric difference (items in either but not both).
is_subsetCheck if array1 is a subset of array2.
array_reverseReverse an array.
array_rotateRotate an array by n positions.
array_firstGet first n items from array.
array_lastGet last n items from array.
array_nthGet item at specific index.
array_sliceSlice an array.
array_compactRemove falsy values (empty strings) from array.
array_zipZip two arrays together.
array_unzipUnzip array of pairs into two arrays.
array_fillCreate an array filled with a value.
array_repeatRepeat an array n times.
group_by_lengthGroup items by their string length.
array_partitionPartition array into chunks of specified size.
array_interleaveInterleave two arrays.
array_dedupeRemove duplicates from array.
array_frequencyCount frequency of each item.
calculate_meanCalculate arithmetic mean (average).
calculate_medianCalculate median.
calculate_modeCalculate mode (most frequent value).
calculate_varianceCalculate variance.
calculate_stddevCalculate standard deviation.
calculate_percentileCalculate a specific percentile.
calculate_quartilesCalculate quartiles (Q1, Q2, Q3).
calculate_rangeCalculate range (max - min).
calculate_sumCalculate sum of numbers.
calculate_productCalculate product of numbers.
geometric_meanCalculate geometric mean.
harmonic_meanCalculate harmonic mean.
calculate_zscoreCalculate z-score (standard score).
calculate_correlationCalculate Pearson correlation coefficient.
calculate_covarianceCalculate covariance between two datasets.
describe_dataGet descriptive statistics for a dataset.
compound_interestCalculate compound interest.
simple_interestCalculate simple interest.
loan_paymentCalculate monthly loan payment.
calculate_tipCalculate tip and split bill.
percentage_changeCalculate percentage change between two values.
calculate_markupCalculate selling price from cost and markup.
calculate_marginCalculate profit margin.
calculate_discountCalculate discounted price.
calculate_vatCalculate VAT (Value Added Tax).
mortgage_calculatorCalculate mortgage details.
rule_of_72Calculate time to double investment using Rule of 72.
future_valueCalculate future value of an investment.
present_valueCalculate present value of a future amount.
break_evenCalculate break-even point.
return_on_investmentCalculate Return on Investment (ROI).
test_patternTest if a regex pattern matches text.
find_all_matchesFind all matches of a pattern in text.
regex_replaceReplace pattern matches in text.
regex_splitSplit text by regex pattern.
validate_patternValidate if a regex pattern is syntactically correct.
escape_patternEscape special regex characters in text.
extract_groupsExtract capture groups from a pattern match.
get_email_patternGet regex pattern for email validation.
get_url_patternGet regex pattern for URL validation.
get_phone_patternGet regex pattern for phone number validation.
get_ipv4_patternGet regex pattern for IPv4 address validation.
get_ipv6_patternGet regex pattern for IPv6 address validation.
get_date_patternGet regex pattern for date validation.
get_time_patternGet regex pattern for time validation.
get_credit_card_patternGet regex pattern for credit card validation.
get_uuid_patternGet regex pattern for UUID validation.
get_slug_patternGet regex pattern for URL slug validation.
get_hex_color_patternGet regex pattern for hex color validation.
get_password_patternGet regex pattern for password validation with custom requirements.
prime_factorsGet prime factors of a number.
get_divisorsGet all divisors of a number.
nth_primeGet the nth prime number.
primes_in_rangeGet all prime numbers in a range.
to_romanConvert number to Roman numerals.
base_convertConvert a number between different bases.
is_perfect_numberCheck if a number is a perfect number (sum of proper divisors equals the number).
is_armstrong_numberCheck if a number is an Armstrong number (narcissistic number).
is_palindrome_numberCheck if a number is a palindrome.
collatz_sequenceGenerate Collatz sequence for a number.
digital_rootCalculate the digital root (repeated digit sum until single digit).
sum_digitsSum the digits of a number.
reverse_numberReverse the digits of a number.
count_digitsCount the number of digits.
nth_triangularGet the nth triangular number.
is_triangularCheck if a number is a triangular number.
nth_squareGet the nth square number.
nth_cubeGet the nth cube number.
is_power_ofCheck if a number is a power of another number.
nearest_powerFind the nearest power of a base to a number.
calculate_bmiCalculate Body Mass Index (BMI).
calculate_bmrCalculate Basal Metabolic Rate (BMR) using Mifflin-St Jeor equation.
ideal_weightCalculate ideal body weight using various formulas.
heart_rate_zonesCalculate heart rate training zones.
estimate_body_fatEstimate body fat percentage using US Navy method.
daily_water_intakeCalculate recommended daily water intake.
calories_burnedEstimate calories burned during activities.
calculate_macrosCalculate macronutrient targets.
sleep_cyclesCalculate optimal sleep/wake times based on 90-minute sleep cycles.
lorem_words_2Generate lorem ipsum words.
lorem_sentencesGenerate lorem ipsum sentences.
lorem_paragraphsGenerate lorem ipsum paragraphs.
lorem_htmlGenerate lorem ipsum as HTML.
lorem_markdownGenerate lorem ipsum as Markdown.
lorem_bytesGenerate lorem ipsum of approximately specified byte size.
generate_namesGenerate random placeholder names.
generate_emailsGenerate random placeholder email addresses.
generate_addressesGenerate random placeholder addresses.
generate_phonesGenerate random placeholder phone numbers.
generate_companiesGenerate random placeholder company names.
generate_datesGenerate random dates.
generate_uuidsGenerate random UUIDs.
magic_8_ballAsk the Magic 8-Ball.
fortune_cookieGet a fortune cookie message.
dad_jokeGet a random dad joke.
would_you_ratherGet a 'Would You Rather' question.
random_complimentGenerate a random compliment.
random_excuseGenerate a random excuse.
friendly_roastGenerate a friendly roast.
random_triviaGet a random trivia fact.
random_emojiGet random emoji(s).
yes_noGet a random yes or no answer.
random_integerGenerate random integer(s) within a range.
random_float_2Generate random floating-point number(s).
random_booleanGenerate random boolean value(s).
random_choicePick random item(s) from a list.
random_weighted_choicePick random item(s) with weighted probabilities.
random_shuffleRandomly shuffle a list of items.
random_string_2Generate random string(s) from specified character set.
random_bytes_2Generate cryptographically secure random bytes.
random_uuidGenerate random UUID(s).
random_gaussianGenerate random number(s) from a Gaussian (normal) distribution.
random_dateGenerate random date(s) within a range.
random_timeGenerate random time(s) of day.
random_color_2Generate random color(s).
random_nameGenerate random name(s) using Faker with locale support.
random_emailGenerate random email address(es) using Faker.
random_phoneGenerate random phone number(s) using Faker with locale-appropriate formats.
random_ipGenerate random IP address(es).
random_macGenerate random MAC address(es).
random_coordinatesGenerate random geographic coordinates.
random_diceRoll dice with configurable sides.
random_coinFlip a coin (optionally biased).
random_cardDraw random playing card(s) from a deck.
random_passwordGenerate secure random password(s).
random_hexGenerate random hexadecimal string(s).
random_elementGet random chemical element(s).
random_emoji_2Get random emoji(s).
random_addressGenerate random address(es) using Faker with locale support.
random_companyGenerate random company name(s) using Faker.
random_jobGenerate random job title(s) using Faker.
random_personGenerate complete random person profile(s) using Faker.
random_textGenerate random text using Faker.
random_usernameGenerate random username(s) using Faker.
random_urlGenerate random URL(s) using Faker.
random_credit_cardGenerate random credit card details (fake, for testing only).
list_localesList available locales for Faker-powered endpoints.
echoEcho back the message.
pingPing endpoint.
nullReturns null.
true_endpointReturns true.
false_endpointReturns false.
empty_arrayReturns an empty array.
empty_objectReturns an empty object.
user_agentParse a user agent string.
ip_info_2Get basic information about an IP address.
rgb_to_hslConvert RGB to HSL color.
compare_2Compare two values.
sort_itemsSort a list of items.
unique_itemsGet unique items from a list.
count_itemsCount occurrences of each item.
min_valueFind minimum value.
max_valueFind maximum value.
fizzbuzzThe classic FizzBuzz.
hello_worldHello World as a Service.
status_code_infoGet information about an HTTP status code.
chunk_arraySplit items into chunks of specified size.
flatten_arrayFlatten a nested array.
in_rangeCheck if a value is within a range.