stellar:pubnet

595 resources accept payment on this network.

Compound annual growth rate between a beginning and ending value over

Compound annual growth rate between a beginning and ending value over N years: (end/begin)^(1/years) - 1. Also returns total growth over the whole period.

1000 / request

Build the full per-period amortization schedule for a fully-amortizing

Build the full per-period amortization schedule for a fully-amortizing loan. Each row reports the period number, payment, the principal vs. interest split for that payment, and the remaining balance after that payment. Use this when the user wants to see how interest tapers over the life of the loan, or to model an extra-payment scenario by reading the balance at any period.

1000 / request

Holt's linear trend method - level + trend (no seasonality)

Holt's linear trend method - level + trend (no seasonality). Two smoothing parameters: alpha (level) and beta (trend). Forecast extrapolates as a straight line from the last fitted level along the last fitted trend, so it grows or shrinks linearly with horizon. Use this when your series has a persistent up/down trend but no seasonal cycle (e.g. a SaaS MRR climb, a deflating cohort retention curve).

1000 / request

Compute simple (SMA) and exponential (EMA) moving averages over a nume

Compute simple (SMA) and exponential (EMA) moving averages over a numeric series. Returns one value per input position - the first (window-1) SMA values are null since there isn't enough history. EMA uses the standard alpha = 2/(window+1) smoothing factor used in technical analysis.

1000 / request

Run the same input through gzip, brotli, and raw deflate at max settin

Run the same input through gzip, brotli, and raw deflate at max settings and report each one's output size and ratio. Use this to decide which algorithm to actually use - the answer depends on your content (binary often resists compression entirely; English prose squeezes well with brotli; JSON sits in between).

1000 / request

Compress a string with gzip (RFC 1952) and return it as base64

Compress a string with gzip (RFC 1952) and return it as base64. Reports input bytes, output bytes, and the compression ratio so you can decide if it was worth doing. Input can be plain text (utf8) or already-binary content (base64 or hex).

1000 / request

Extract a <table> from an HTML string as JSON rows (header-keyed) or C

Extract a <table> from an HTML string as JSON rows (header-keyed) or CSV. Useful for prices, schedules, sports stats, or anything an agent has already fetched as HTML. If multiple tables match, the first is used.

1000 / request

Great-circle distance between two latitude/longitude points using the

Great-circle distance between two latitude/longitude points using the haversine formula. Returns kilometers and miles. Deterministic.

1000 / request

Multi-period weather forecast for a US location from api

Multi-period weather forecast for a US location from api.weather.gov (NWS, public domain). Give latitude and longitude; returns the place plus upcoming forecast periods (temp, wind, conditions). US coverage only. ?lat=40.71&lon=-74.01

1000 / request

Search autocomplete: query suggestions for a partial input as a flat J

Search autocomplete: query suggestions for a partial input as a flat JSON array. Useful for query expansion, did-you-mean refinement, and topic exploration. Returns up to 20 suggestions.

1000 / request

Validate an ISBN-10 or ISBN-13 checksum (hyphens/spaces ignored) and r

Validate an ISBN-10 or ISBN-13 checksum (hyphens/spaces ignored) and report which format it is.

1000 / request

Count business days (Mon–Fri) between two dates, inclusive of the star

Count business days (Mon–Fri) between two dates, inclusive of the start, exclusive of the end. Optional list of holiday dates to skip.

1000 / request

Descriptive statistics for an array of numbers: count, sum, mean, medi

Descriptive statistics for an array of numbers: count, sum, mean, median, mode, min, max, range, variance, stddev, and percentiles.

1000 / request

Deep-merge two JSON objects (b wins on conflicts; arrays are concatena

Deep-merge two JSON objects (b wins on conflicts; arrays are concatenated).

1000 / request

Sort the lines of a text

Sort the lines of a text. order: asc (default) | desc | numeric. unique:true removes duplicates; ci:true is case-insensitive.

1000 / request

Validate an IBAN: country code, length, and the ISO 13616 mod-97 check

Validate an IBAN: country code, length, and the ISO 13616 mod-97 checksum.

1000 / request

Heuristic user-agent string parser: browser, version, OS, device class

Heuristic user-agent string parser: browser, version, OS, device class, and bot detection.

1000 / request

Deep-compare two JSON values

Deep-compare two JSON values. Returns a list of changed/added/removed paths (capped at 1000 differences).

1000 / request

Generate ULIDs (sortable, timestamp-prefixed identifiers)

Generate ULIDs (sortable, timestamp-prefixed identifiers). ?count=1..100.

1000 / request

Hex encode or decode text

Hex encode or decode text. mode: encode (default) or decode.

1000 / request

Extract text from a PNG or JPEG image - full text, overall confidence

Extract text from a PNG or JPEG image - full text, overall confidence and per-line bounding boxes - from a URL or base64 payload, Tesseract on-device (no upstream API). Default English; other ISO 639-2 languages on request. Use it when an agent needs the words in a screenshot, scan or photo.

10000 / request

Explorer-grade metadata for any ERC-20/721/1155 token on any Blockscou

Explorer-grade metadata for any ERC-20/721/1155 token on any Blockscout-hosted chain: name, symbol, decimals, type, total supply, holder count, and 24h transfer count - bought per call from Blockscout's Pro API over x402, no API key. Marked untrustedContent: token names are attacker-chosen, analyze don't trust.

5000 / request

Enrich a public GitHub repository: stars, forks, watchers, open issues

Enrich a public GitHub repository: stars, forks, watchers, open issues, license, topics, primary language plus the full language byte mix with percentages, created/last-push timestamps, default branch, archived/fork flags, and homepage. Keyless (shared per-IP rate limit; the server optionally uses a GITHUB_TOKEN env var for a higher ceiling). Unknown repos return 404.

5000 / request

Resolve any DNS record type for a host: A, AAAA, MX, TXT, CNAME, NS, S

Resolve any DNS record type for a host: A, AAAA, MX, TXT, CNAME, NS, SOA, CAA, SRV, PTR. Returns the records plus a count. Built on Node's native resolver - no external API.

5000 / request

Next page