All services
24,001–24,024 of 24,785emailauth.openverbs.com
emailauth.openverbs.com
Evaluate an SPF record against an IPv4/IPv6 address using only its literal ip4/ip6/all mechanisms. DNS-dependent mechanisms (include, a, mx, exists, redirect) reached before a match yield an honest `indeterminate` result rather than a guess.
textdistance.openverbs.com
textdistance.openverbs.com
Hamming distance — the number of positions at which two EQUAL-LENGTH strings differ — plus a normalized similarity. Strings of unequal length are a clean 400.
regex.openverbs.com
regex.openverbs.com
Split the input into parts on each match of a RE2 pattern. An optional limit caps the number of parts (0 = unlimited). Returns the parts array and its count.
format.openverbs.com
format.openverbs.com
Sniff which structured format an unknown document is. Because formats overlap, returns every plausible format with a 0–1 score plus the best guess — honest about ambiguity rather than pretending certainty.
matrix.openverbs.com
matrix.openverbs.com
Multiply two matrices A·B. The inner dimensions must agree (columns of A equal rows of B); a mismatch or a ragged/empty matrix is a clean 400.
otp.openverbs.com
otp.openverbs.com
Verify a submitted TOTP code against a base32 secret, scanning ±window time steps (default ±1) to tolerate clock drift. Returns valid plus the matching step offset (delta). A code that does not match is a successful result with valid=false — not an error.
wallet.openverbs.com
wallet.openverbs.com
Guess which chain an address belongs to from its shape and encoding, without requiring the caller to know it up front. Returns the chain, format and address type, or nulls when nothing matches.
astro.openverbs.com
astro.openverbs.com
Compute the Moon's phase name, age in days since the last new moon and illuminated fraction (0..1) for a UTC date/time. Uses the mean synodic month (29.53 days).
scan.openverbs.com
scan.openverbs.com
Scan source code or configuration text for hardcoded secrets: AWS access keys, GitHub/Slack/Google tokens, Stripe and OpenAI keys, PEM private-key blocks, JWTs and high-entropy secret assignments. Placeholder values are filtered out. Each finding gives the rule, a severity (critical/high/medium/low), line and column, entropy and a masked excerpt. Offline and deterministic.
otp.openverbs.com
otp.openverbs.com
Generate an RFC 6238 time-based one-time password from a base32 secret. Uses the current time by default, or an explicit unix timestamp (seconds); configurable period (default 30s), digits (default 6) and algorithm (default SHA1). Also returns the counter and seconds remaining in the window.
format.openverbs.com
format.openverbs.com
Infer a JSON Schema (draft-07) from a sample document in any supported format. Types are inferred, present keys are marked required, and heterogeneous array item schemas are merged. The result validates out of the box with /v1/validate.
regex.openverbs.com
regex.openverbs.com
Find the first match (or all matches with all=true) of a RE2 pattern, returning each match's text, start/end offsets, and numbered and named capture groups. No match is a successful 200 with an empty match list.
numtheory.openverbs.com
numtheory.openverbs.com
Prime-factorize a positive integer (≤ 10^15 so the computation is always fast). Returns the prime factors with exponents, the divisor count, and whether n is prime.
jsonschema.openverbs.com
jsonschema.openverbs.com
Infer a JSON Schema (draft-07) from an example value, walking objects and arrays recursively. Set detectFormat=true to tag strings that look like date-time/date/email/uri/uuid, requireAll=false to leave object properties optional, and additionalProperties=true to allow extra keys.
geometry.openverbs.com
geometry.openverbs.com
Euclidean, Manhattan and Chebyshev distance between two 2-D points.
calendar.openverbs.com
calendar.openverbs.com
Return the ordinal day of the year (1..366), the number of days in that year and whether it is a leap year.
calendar.openverbs.com
calendar.openverbs.com
Compute the date of Western (Gregorian) Easter Sunday for a year in 1583..9999 using the Anonymous Gregorian computus.
matrix.openverbs.com
matrix.openverbs.com
Compute the determinant of a square matrix via Gaussian elimination with partial pivoting. A non-square, ragged or empty matrix is a clean 400; a singular matrix simply returns 0.
combinatorics.openverbs.com
combinatorics.openverbs.com
Number of ordered arrangements of r items from n, nPr = n!/(n-r)!. Requires r ≤ n and r ≤ 10000.
textdistance.openverbs.com
textdistance.openverbs.com
Jaccard similarity index in [0,1] — the size of the intersection over the union of the two strings' character-bigram sets.
calendar.openverbs.com
calendar.openverbs.com
Convert a Julian Day Number back to a proleptic-Gregorian date, with the ISO weekday (1=Monday..7=Sunday) and its name.
finance.openverbs.com
finance.openverbs.com
Grow a principal by simple or compound interest over a number of years. Compound interest uses compoundsPerYear compounding periods (default 12, monthly).
numtheory.openverbs.com
numtheory.openverbs.com
Miller-Rabin primality test (with witnesses that are exact for all 64-bit integers) on an arbitrary-precision integer. Returns { prime }.
textdistance.openverbs.com
textdistance.openverbs.com
Sørensen-Dice similarity coefficient in [0,1] over character bigrams — robust to word order and minor edits.