Animica x402 Directory

Directory

x402.outpimp.com

x402.outpimp.com publishes 61 machine-payable endpoints over the x402 protocol, priced from $0.01 to $0.01 per call. Each was probed directly; the response code below is what it returned.

Endpoints

EndpointMethodPriceProbe
/alcoholSavingsCalculator POST $0.01 402
/astronomyEphemeris POST $0.01 402
/baristaFireCalculator POST $0.01 402
/base64Decode POST $0.01 402
/base64Encode POST $0.01 402
/bigNumberArithmetic POST $0.01 402
/capRateCalculator POST $0.01 402
/cashOnCashReturnCalculator POST $0.01 402
/chemicalElementLookup POST $0.01 402
/coastFireCalculator POST $0.01 402
/compoundInterestCalculator POST $0.01 402
/cronParse POST $0.01 402
/diffText POST $0.01 402
/electricCarSavingsCalculator POST $0.01 402
/emergencyFundCalculator POST $0.01 402
/evaluateExpression POST $0.01 402
/fatFireCalculator POST $0.01 402
/fireCalculator POST $0.01 402
/gasMileageSavingsCalculator POST $0.01 402
/generateChecksumFormat POST $0.01 402
/generateDateData POST $0.01 402
/generateFinanceData POST $0.01 402
/generateGeoCoordinate POST $0.01 402
/generateInternetData POST $0.01 402
/generateNumberData POST $0.01 402
/generatePassword POST $0.01 402
/generateSlug POST $0.01 402
/generateStringData POST $0.01 402
/generateUUID POST $0.01 402
/getCurrencyRate POST $0.01 402
/getCurrentCryptoPrice POST $0.01 402
/getWeather POST $0.01 402
/hashMD5 POST $0.01 402
/hashSHA256 POST $0.01 402
/houseHackingCalculator POST $0.01 402
/hsaGrowthCalculator POST $0.01 402
/hybridVsGasSavingsCalculator POST $0.01 402
/isEmail POST $0.01 402
/isPrime POST $0.01 402
/isURL POST $0.01 402
/jsonSchemaValidate POST $0.01 402
/jwtDecode POST $0.01 402
/keepingUpWithInflationCalculator POST $0.01 402
/loanPaymentCalculator POST $0.01 402
/matrixOperations POST $0.01 402
/mortgageComparisonCalculator POST $0.01 402
/physicalConstants POST $0.01 402
/portfolioRebalancingCalculator POST $0.01 402
/purchaseFireImpactCalculator POST $0.01 402
/qrCodeGenerate POST $0.01 402
/regexTest POST $0.01 402
/rentalPropertyCalculator POST $0.01 402
/savingsRateCalculator POST $0.01 402
/semverCompare POST $0.01 402
/solveLinearEquation POST $0.01 402
/statisticsSummary POST $0.01 402
/teslaSavingsCalculator POST $0.01 402
/unitConvert POST $0.01 402
/upworkFeeCalculator POST $0.01 402
/urlEncode POST $0.01 402
/windfallFireImpactCalculator POST $0.01 402

What these endpoints do

x402.outpimp.com/alcoholSavingsCalculator

Alcohol spending and opportunity-cost calculator. Sums home and going-out drinking costs plus associated rideshare costs into monthly and yearly totals, then projects what that redirected spending cou…

POST · $0.01 · probe 402

x402.outpimp.com/astronomyEphemeris

Sunrise, sunset, solar noon, day length, and moon phase for a given latitude/longitude/date, computed via the suncalc library (standard solar/lunar position algorithms) — precise astronomical math an …

POST · $0.01 · probe 402

x402.outpimp.com/baristaFireCalculator

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 after quitting full-time work, until full fi…

POST · $0.01 · probe 402

x402.outpimp.com/base64Decode

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 by hand.

POST · $0.01 · probe 402

x402.outpimp.com/base64Encode

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.

POST · $0.01 · probe 402

x402.outpimp.com/bigNumberArithmetic

Arbitrary-precision integer arithmetic (add, subtract, multiply, power) beyond IEEE-754 float precision, using native BigInt. Operands are passed as digit strings so precision is never lost in transit…

POST · $0.01 · probe 402

x402.outpimp.com/capRateCalculator

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 capitalization rate: first-year NOI divid…

POST · $0.01 · probe 402

x402.outpimp.com/cashOnCashReturnCalculator

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 headlines the first-year cash-on-cash return…

POST · $0.01 · probe 402

x402.outpimp.com/chemicalElementLookup

Periodic table element lookup by symbol or atomic number, returning name, atomic mass, and category. Covers the most commonly referenced elements.

POST · $0.01 · probe 402

x402.outpimp.com/coastFireCalculator

Coast FIRE calculator. Computes the lump sum needed today, invested with zero further contributions, to grow into your full retirement number by your target retirement age, plus (given an ongoing mont…

POST · $0.01 · probe 402

x402.outpimp.com/compoundInterestCalculator

Compound interest calculator. Projects the ending value of an investment given a starting principal, monthly contributions, and an annual interest rate, compounded monthly over a chosen number of year…

POST · $0.01 · probe 402

x402.outpimp.com/cronParse

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.

POST · $0.01 · probe 402

x402.outpimp.com/diffText

Line-based diff between two strings using the Myers diff algorithm (via the diff/jsdiff library), returning a list of equal/add/remove operations.

POST · $0.01 · probe 402

x402.outpimp.com/electricCarSavingsCalculator

Electric car savings calculator. Compares annual electricity cost against annual gas cost for a comparable gas vehicle, accounting for free-charging usage, and computes break-even years, cost per full…

POST · $0.01 · probe 402

x402.outpimp.com/emergencyFundCalculator

Emergency fund calculator. Multiplies monthly essential expenses by a chosen runway length (in months) to compute a target emergency savings amount.

POST · $0.01 · probe 402

x402.outpimp.com/evaluateExpression

Safe arithmetic expression evaluator. Parses and evaluates expressions with +, -, *, /, ^, and parentheses using a bounded-recursion parser (no eval/Function), avoiding the arithmetic slips an LLM mak…

POST · $0.01 · probe 402

x402.outpimp.com/fatFireCalculator

Fat FIRE calculator. Same year-by-year compound-growth simulation as the standard FIRE calculator, framed for a higher, more lifestyle-preserving retirement spending target.

POST · $0.01 · probe 402

x402.outpimp.com/fireCalculator

FIRE (Financial Independence, Retire Early) calculator. Projects year-by-year net worth growth to determine how many years until your portfolio can sustainably fund retirement spending at a given safe…

POST · $0.01 · probe 402

x402.outpimp.com/gasMileageSavingsCalculator

Gas mileage savings calculator. Compares annual fuel cost between two gas-powered vehicles based on miles driven, gas price, and each vehicle's MPG, and computes the break-even point for any price pre…

POST · $0.01 · probe 402

x402.outpimp.com/generateChecksumFormat

Checksummed-identifier-format generator API. Generates a structurally valid isbn, upc, vin, or imei, each computed with its real check-digit algorithm. vin and imei take no arguments. Accepts optional…

POST · $0.01 · probe 402

x402.outpimp.com/generateDateData

True-random-date generator API. Generates a bounded random date via one of: anytime, past, future, between, betweens, recent, soon, birthdate. between/betweens require "from" and "to" date strings. Ac…

POST · $0.01 · probe 402

x402.outpimp.com/generateFinanceData

Checksummed-financial-identifier generator API. Generates a structurally valid iban, bic, creditCardNumber, bitcoinAddress, litecoinAddress, ethereumAddress, or routingNumber, each computed with its r…

POST · $0.01 · probe 402

x402.outpimp.com/generateGeoCoordinate

True-random-geo-coordinate generator API. Generates a bounded random latitude, longitude, or a coordinate near a given origin (via one of: latitude, longitude, nearbyGPSCoordinate). Accepts optional l…

POST · $0.01 · probe 402

x402.outpimp.com/generateInternetData

Network-format generator API. Generates a valid ipv4/ipv6 address (optionally within a CIDR block or named network range) or a well-formed JWT string (via one of: ipv4, ipv6, jwt). Accepts optional lo…

POST · $0.01 · probe 402

x402.outpimp.com/generateNumberData

True-random-number generator API. Generates a bounded random number via one of: int, float, binary, octal, hex, bigInt (returned as a string), romanNumeral. Accepts optional locale (default en_US). Nu…

POST · $0.01 · probe 402