Base64 encoder API. Encodes UTF-8 text to base64 instantly and correctly — skip burning agent tokens hand-computing base64, which LLMs frequently get wrong on padding and edge cases.
# 1. Ask the endpoint what it costs (no payment, no wallet needed): curl -i -X POST 'https://x402.outpimp.com/base64Encode' # -> HTTP/1.1 402 Payment Required # the response carries the price, asset and pay-to address. # 2. Pay and retry with any x402 client: npx x402-fetch -X POST 'https://x402.outpimp.com/base64Encode'
Endpoint: https://x402.outpimp.com/base64Encode. Operated by x402.outpimp.com, not by Animica. Price and availability were correct at the last probe on 2026-09-02 and are set by the operator, who may change them.
Alcohol spending and opportunity-cost calculator. Sums home and going-out drinking costs plus associated rideshare costs into monthly and yearly totals, then pr…
Sunrise, sunset, solar noon, day length, and moon phase for a given latitude/longitude/date, computed via the suncalc library (standard solar/lunar position alg…
Barista FIRE calculator. Simulates net worth growth through a full-time-saving phase and then a reduced-target phase funded partly by part-time/side income afte…
Base64 decoder API. Decodes a base64 string back to UTF-8 text instantly and correctly, avoiding the padding and charset errors LLMs make when decoding base64 b…
Arbitrary-precision integer arithmetic (add, subtract, multiply, power) beyond IEEE-754 float precision, using native BigInt. Operands are passed as digit strin…
Cap rate calculator for real estate investing. Runs a full multi-year deal analysis (per-category rent/expense growth, a sale scenario, IRR) and headlines the c…
Cash-on-cash return calculator for real estate investing. Runs a full multi-year deal analysis (per-category rent/expense growth, a sale scenario, IRR) and head…
Periodic table element lookup by symbol or atomic number, returning name, atomic mass, and category. Covers the most commonly referenced elements.
Coast FIRE calculator. Computes the lump sum needed today, invested with zero further contributions, to grow into your full retirement number by your target ret…
Compound interest calculator. Projects the ending value of an investment given a starting principal, monthly contributions, and an annual interest rate, compoun…
Computes the next N run times for a standard 5-field cron expression, avoiding the mental cron-schedule simulation an LLM often gets subtly wrong.
Line-based diff between two strings using the Myers diff algorithm (via the diff/jsdiff library), returning a list of equal/add/remove operations.