ForHosting KIT

Everything the KIT does, in one place

ForHosting KIT is a catalog of 2015 ready-made tasks — convert a document, read an invoice, transcribe audio, validate an IBAN, generate a QR — across 14 categories. Run them here on the web, or call them from your code with one authenticated POST. This page is the complete API reference: endpoints, the async model, the webhook contract, errors and pricing.

Use it from WebAPIEmailTelegramApp soon

What the KIT is

A task catalog, not a model

Every capability is a task: you send input, you get a result. There are no tokens, no context windows and no prompt engineering. A task has a published price, a documented unit and a fixed shape.

Four ways to run one. Web — every capability has its own page and runs in the browser; the free ones never leave your device. API — one authenticated POST, documented below. Email and Telegram — send the task to a KIT address. The API is one channel, not the product.

Quickstart

From nothing to a result in three calls

Create an account, get your key, run a task. No sales call, no waiting list.

1

Get an API key

POST /signup with your email returns a key that starts with kit_live_. It is shown once. We store only its SHA-256 hash, so if you lose it we cannot recover it — we issue a new one.

2

Pick a capability

GET /catalog lists all 2015 with their live price and unit. Or browse the catalog at the bottom of this page.

3

Run it

POST to the capability's endpoint. You get a task_id back immediately and the result arrives at your webhook.

Authentication

Bearer token, shown once

Every API request carries Authorization: Bearer kit_live_…. Keys are 48 hex characters after the prefix.

We store only the SHA-256 hash of your key. That is deliberate: a database dump does not hand anyone your credentials — but it also means we genuinely cannot email you your key back. Lost it? We revoke and issue.

A bad key always returns 401 and never says why. Revoked, mistyped and never-existed are indistinguishable on purpose: telling you which one it was is telling an attacker too.

The async model

Every task is asynchronous. No exceptions.

1

You POST the task

Returns 202 with a task_id and status queued, plus what it will cost. The money is held, not charged.

2

It runs on the edge

Sub-second for compute tasks; seconds for AI and media.

3

The result finds you

It is POSTed to your webhook_url if you gave one. Otherwise GET /tasks/{id}/result. Results are kept by size — from 168 h for small ones (up to 1 MB) down to 6 h for the largest.

4

Failure costs nothing

A task retries up to 3 times with backoff. If it still fails, the hold is released and you are not charged. Ever.

API reference

Every endpoint the KIT answers

Routes carry no version prefix. /v1/* still resolves for older clients, but it is not the canonical form and new code should not use it.

POSThttps://api.kit.forhosting.com/tasks

Base URL: https://api.kit.forhosting.com

MethodRouteAuthWhat it does
GET / Public Service index: version and endpoint list.
GET /catalog Public All capabilities with live price and unit. ?lang=en|es.
GET /plans Public Top-up (recharge) amounts. Legacy plan fields kept for compatibility.
POST /signup Public {email}201 with your api_key, shown once. 409 if the email exists; 429 over 10/h per IP.
GET /account API key Account balance: available_usd is your real wallet balance, plus held_usd. When the wallet is managed by the client area, balance.source is "portal" and balance_endpoint points to the live figure.
POST /estimate API key {type, input} → units, price and breakdown. Quotes without running. When the real quantity can't be known upfront (the page count of a PDF behind a URL), the reply says estimated: true.
POST /tasks API key {type, input, webhook_url?, max_cost_usd?}202. You are billed for the task's real unit — pages, minutes, images — measured while it runs, not for the upfront estimate. max_cost_usd is a hard ceiling: if the real cost exceeds it the task fails and nothing is charged. Send Idempotency-Key to make retries safe: a replay returns the original task with idempotent: true.
POST /{alias} API key Per-capability shortcut for POST /tasks with type fixed — e.g. POST /ocr/invoice. This is the form each capability page shows.
POST /uploads API key Send a local file: raw binary body, Content-Type of the file. → 201 with ref: "kit://upl_…", which you then put wherever a URL would go: {"input": {"pdf": "kit://upl_…"}}. One upload can feed several tasks. Refs live 24 h. Max 100 MB per upload; each capability applies its own limit on top.
GET /tasks API key Your tasks. ?status=, ?limit= (25 default, 100 max).
GET /tasks/{id} API key Task status. 1 request per second per task; over that, 429 with Retry-After: 1.
GET /tasks/{id}/result API key JSON result, or the file as an attachment. 409 not ready, 410 expired, 422 failed. Retention depends on result size: 168 h for small results, down to 6 h for very large ones.
POST /tasks/{id}/retry API key Re-queue a failed task.
DELETE /tasks/{id} API key Cancel a queued task and release its hold.
GET /tasks/{id}/events API key Soon Not implemented — returns 501. SSE is coming; use the webhook.

Webhooks

Signed delivery, and how to verify it

Set webhook_url when you create a task and we POST the result there when it is ready. This is the recommended path: it costs less than polling and arrives sooner.

Verify the signature before you trust the body. Every delivery carries KIT-Signature: v1=<hex> and KIT-Timestamp: <unix seconds>. The signature is HMAC-SHA256 over the string <timestamp>.<raw body> — the timestamp and the dot are part of the signed payload, not decoration. Sign the raw bytes you received, not a re-serialized object.

Delivery is attempted up to 5 times with exponential backoff. A 4xx from your endpoint stops retrying immediately — we read it as “your handler is wrong”, not “try later”. Only 5xx and network errors retry. After that the delivery is dead-lettered.

{
  "event": "task.completed",
  "created_at": "2026-07-16T10:31:04.120Z",
  "data": {
    "task_id": "tsk_a1b2c3d4e5f6",
    "type": "ocr.invoice",
    "status": "done",
    "units": 1,
    "price_usd": 0.021,
    "result_url": "https://api.kit.forhosting.com/tasks/tsk_a1b2c3d4e5f6/result"
  }
}
const crypto = require("crypto");

// req.body tiene que ser el cuerpo CRUDO, no un objeto re-serializado.
function verify(rawBody, headers, secret) {
  const sig = (headers["kit-signature"] || "").replace(/^v1=/, "");
  const ts  = headers["kit-timestamp"];
  const mine = crypto.createHmac("sha256", secret)
                     .update(ts + "." + rawBody)      // el timestamp va firmado
                     .digest("hex");
  return crypto.timingSafeEqual(Buffer.from(sig), Buffer.from(mine));
}

Errors

Standard HTTP, machine-readable slug

Every error carries a stable error slug in the body. Match on the slug, not the message: messages are localized and may change.

HTTPErrorMeaning
400invalid_emailThe email address is missing or malformed.
400invalid_inputThe input is missing a required field or isn't the shape this task expects.
400invalid_jsonThe request body isn't valid JSON.
400missing_typeNo 'type' field on the request. See GET /catalog.
401unauthorizedMissing or invalid API key.
402account_suspendedYour account is suspended — usually the per-account spend cap. Contact us to lift it.
402insufficient_balanceYour balance doesn't cover the task price.
402max_cost_exceededThe task cost more than the max_cost_usd you set. Nothing was charged.
404input_not_foundThat kit:// reference does not exist. Upload the file again with POST /uploads.
404not_foundNo task or resource at that path.
404unknown_typeThat task type doesn't exist.
409email_takenAn account already exists with that email.
409not_readyThe task isn't finished yet. Poll its status or wait for the webhook.
410expiredThe result's retention window has passed and it is no longer stored.
410input_expiredThat kit:// reference has expired. Uploads live 24 h; upload the file again.
413input_too_largeThe file exceeds the size limit.
422task_failedThe task failed after 3 retries. You are never charged for it.
429rate_limitedToo many requests. Use the webhook instead of polling.
500ledger_errorThe balance couldn't be held or settled. Try again.
500no_resultThe task finished but produced no result.
501coming_soonCapability being deployed (Phase 1b). Its page exists; it doesn't accept executions yet.
501not_implementedThis endpoint or capability isn't available yet.
501unsupportedThis operation isn't supported yet (for example, flows can't be quoted).

Pricing

Published, per task, no credits

Pay only for what you use. Add balance to your account (from $10.00) — it never expires — and every task draws from it at its published per-task price. Real dollars, not points.

Each task costs a base rate plus a unit rate, both published on the capability's own page and in the catalog below — from $0.002 per call. POST /estimate quotes a task without running it, and max_cost_usd on a task refuses it if it would cost more than you said.

Failed tasks are never charged. Free capabilities run in your browser and cost nothing at all.

Free tools
$0.00
Per task
$0.002
Pay-as-you-go
Balance
$10.00

Limits

What the service enforces

Polling a task is capped at 1 request per second; over that you get 429 with Retry-After: 1. Use the webhook instead. Results are kept by size: 168 h for results up to 1 MB, down to 6 h for very large ones. GET /tasks returns 25 by default, 100 maximum. Signup is limited to 10 accounts per hour per IP.

Capability catalog

All 2015, with live prices

Each capability links to its page, where you can run it, see a real example and the published price. Prices here come from the same catalog the Worker bills from — they cannot disagree.

CapabilityEndpointUnitPriceAccess
Convert HTML to PDF POST /pdf/from-html page $0.040 Per use
URL to PDF POST /pdf/from-url page $0.040 Per use
Convert Markdown to PDF POST /pdf/from-markdown page $0.040 Per use
Text to PDF POST /pdf/from-text page $0.002 Per use
JPG to PDF POST /pdf/from-images image $0.002 Per use
Merge PDF files POST /pdf/merge page $0.008 Per use
Split a PDF POST /pdf/split page $0.002 Per use
Extract PDF pages POST /pdf/extract-pages page $0.002 Per use
Delete pages from a PDF POST /pdf/remove-pages page $0.002 Per use
Reorder PDF pages POST /pdf/reorder-pages page $0.002 Per use
Rotate a PDF POST /pdf/rotate page $0.002 Per use
Watermark a PDF POST /pdf/watermark-text page $0.002 Per use
Add a logo to a PDF POST /pdf/watermark-image page $0.002 Per use
Add page numbers to a PDF POST /pdf/page-numbers page $0.002 Per use
Add headers and footers to a PDF POST /pdf/header-footer page $0.002 Per use
Bates numbering POST /pdf/stamp page $0.002 Per use
Read PDF metadata POST /pdf/metadata-read document $0.002 Per use
Edit PDF metadata POST /pdf/metadata-write document $0.002 Per use
Remove PDF metadata POST /pdf/metadata-clean document $0.002 Per use
Count PDF pages and words POST /pdf/stats document $0.002 Per use
Convert PDF to JPG POST /pdf/to-images page $0.040 Per use
Make a PDF thumbnail POST /pdf/thumbnail document $0.040 Per use
Extract text from a PDF POST /pdf/to-text page $0.002 Per use
Convert PDF to Markdown POST /pdf/to-markdown page $0.010 Per use
Convert PDF to HTML POST /pdf/to-html page $0.052 Soon
Fill a PDF form POST /pdf/fill-form document $0.002 Per use
Read PDF form fields POST /pdf/form-read document $0.002 Per use
Flatten a PDF POST /pdf/flatten page $0.002 Per use
Compress a PDF POST /pdf/compress MB $0.041 Soon
Password-protect a PDF POST /pdf/protect document $0.042 Soon
Remove a PDF password POST /pdf/unlock document $0.042 Soon
Convert PDF to PDF/A POST /pdf/to-pdfa page $0.042 Soon
Make a scan searchable POST /pdf/ocr-layer page $0.042 Soon
Optimize a PDF for web POST /pdf/linearize document $0.042 Soon
Compare two PDFs POST /pdf/compare page $0.002 Per use
Split a PDF by bookmarks POST /pdf/split-by-bookmark document $0.002 Per use
Convert Word to PDF POST /doc/word-to-pdf page $0.051 Soon
Convert PDF to Word POST /doc/pdf-to-word page $0.051 Soon
Convert Excel to PDF POST /doc/excel-to-pdf page $0.052 Soon
Convert PDF to Excel POST /doc/pdf-to-excel page $0.010 Per use
Convert PowerPoint to PDF POST /doc/ppt-to-pdf page $0.052 Soon
Get plain text from Word POST /doc/docx-to-text document $0.052 Soon
Convert ODT to PDF POST /doc/odt-to-pdf page $0.052 Soon
Convert EPUB to PDF POST /doc/epub-to-pdf page $0.052 Soon
Generate a Word doc POST /doc/generate-docx document $0.002 Per use
Create an invoice PDF POST /pdf/invoice document $0.040 Per use
Create a receipt PDF POST /pdf/receipt document $0.040 Per use
Create certificates POST /pdf/certificate document $0.040 Per use
Generate a contract PDF POST /pdf/contract document $0.040 Per use
Turn an HTML report into a PDF POST /pdf/report page $0.040 Per use
Make shipping labels POST /pdf/label document $0.002 Per use
Create a quote PDF POST /pdf/quote document $0.040 Per use
Extract text from an image POST /ocr/image image $0.010 Per use
Read a scanned PDF POST /ocr/pdf page $0.010 Per use
Turn handwriting into text POST /ocr/handwriting image $0.010 Per use
Extract tables to CSV POST /ocr/table page $0.010 Per use
Scan a receipt POST /ocr/receipt document $0.010 Per use
Extract invoice data POST /ocr/invoice page $0.009 Per use
Read a purchase order POST /ocr/purchase-order page $0.010 Per use
Read a bank statement POST /ocr/bank-statement page $0.010 Per use
Scan a business card POST /ocr/business-card image $0.010 Per use
Parse a CV POST /ocr/resume document $0.003 Per use
Parse a job description POST /ocr/job-post document $0.003 Per use
Extract contract data POST /ocr/contract page $0.003 Per use
Find clauses in a contract POST /ocr/clause page $0.003 Per use
Read a filled-in form POST /ocr/form page $0.010 Per use
Read an ID document POST /ocr/id-document image $0.010 Per use
Read a passport's MRZ POST /ocr/mrz image $0.010 Per use
Get the data behind a chart POST /ocr/chart image $0.010 Per use
Screenshot to text POST /ocr/screenshot image $0.010 Per use
Digitize a menu POST /ocr/menu image $0.010 Per use
Check if a document is signed POST /ocr/signature-detect page $0.010 Per use
Sort documents by type POST /ocr/document-classify document $0.010 Per use
Open an EML file POST /ocr/eml document Free
Any document to JSON POST /ocr/to-json page $0.010 Per use
Key points of a document POST /ocr/key-points page $0.003 Per use
Build a timeline from a document POST /ocr/timeline page $0.003 Per use
Pull citations from a paper POST /ocr/citation page $0.003 Per use
Datasheet to attributes POST /ocr/spec-sheet document $0.003 Per use
Find barcodes in a document POST /ocr/barcode-doc page Free
Detect a document's language POST /ocr/language document $0.003 Per use
Is this PDF scanned? POST /ocr/scanned-or-native document $0.002 Per use
Resize an image POST /image/resize image $0.002 Soon
Bulk resize images POST /image/resize-batch image $0.002 Soon
Make responsive images POST /image/responsive-set image $0.002 Soon
Crop an image POST /image/crop image $0.002 Soon
Smart crop POST /image/smart-crop image $0.002 Soon
Make thumbnails POST /image/thumbnail image $0.002 Soon
Compress an image POST /image/compress image $0.002 Soon
Convert to WebP POST /image/to-webp image $0.002 Soon
Convert to AVIF POST /image/to-avif image $0.002 Soon
Convert image format POST /image/convert image $0.002 Soon
HEIC to JPG POST /image/heic-to-jpg image $0.002 Soon
SVG to PNG POST /image/svg-to-png image $0.040 Per use
Rotate an image POST /image/rotate image $0.002 Soon
Flip an image POST /image/flip image $0.002 Soon
Black-and-white an image POST /image/grayscale image $0.002 Soon
Apply a filter POST /image/filter image $0.002 Soon
Fix brightness & contrast POST /image/brightness-contrast image $0.002 Soon
Adjust saturation POST /image/saturation image $0.002 Soon
Add a watermark POST /image/watermark image $0.002 Soon
Add text to an image POST /image/text-overlay image $0.002 Soon
Blur part of an image POST /image/blur-region image $0.002 Soon
Blur faces POST /image/blur-faces image $0.010 Soon
Blur license plates POST /image/blur-plates image $0.010 Soon
Read EXIF data POST /image/exif-read image Free
Remove EXIF data POST /image/exif-strip image Free
Extract a color palette POST /image/palette image Free
Find the dominant color POST /image/dominant-color image Free
Generate a BlurHash POST /image/blurhash image Free
Perceptual hash POST /image/phash image Free
Compare two images POST /image/compare image $0.002 Per use
Generate a favicon POST /image/favicon set $0.002 Soon
Open Graph images POST /image/og image $0.040 Per use
Resize for social media POST /image/social-variants set $0.002 Soon
Generate avatars POST /image/avatar image Free
Sprite sheets POST /image/sprite image $0.002 Soon
Validate an image POST /image/validate image Free
Image to Base64 POST /image/to-base64 image Free
Generate alt text POST /image/describe image $0.010 Per use
Caption an image POST /image/caption image $0.010 Per use
Auto-tag images POST /image/tag image $0.010 Per use
Classify images POST /image/classify image $0.010 Per use
Detect objects POST /image/detect-objects image $0.010 Per use
Detect NSFW content POST /image/moderate image $0.010 Per use
Check image quality POST /image/quality image $0.010 Per use
Image to prompt POST /image/prompt-from-image image $0.010 Per use
Text to image POST /image/generate image $0.002 Per use
Image variations POST /image/variations image $0.002 Per use
Generate banners POST /image/banner image $0.002 Per use
Product mockups POST /image/product-mockup image $0.002 Per use
Remove the background POST /image/remove-background image $0.061 Soon
Replace the background POST /image/replace-background image $0.062 Soon
Upscale an image POST /image/upscale image $0.061 Soon
Colorize photos POST /image/colorize image $0.062 Soon
Denoise an image POST /image/denoise image $0.062 Soon
Product packshots POST /image/packshot image $0.062 Soon
Product shadow POST /image/shadow image $0.062 Soon
Transcribe audio POST /audio/transcribe minute $0.004 Per use
Transcript with timestamps POST /audio/transcribe-timestamps minute $0.002 Per use
Subtitles as .srt POST /audio/subtitles-srt minute $0.002 Per use
WebVTT captions POST /audio/subtitles-vtt minute $0.002 Per use
Identify speakers POST /audio/diarize minute $0.002 Per use
Detect the spoken language POST /audio/detect-language minute $0.002 Per use
Translate audio POST /audio/translate minute $0.004 Per use
Summarize audio POST /audio/summarize minute $0.004 Per use
Meeting minutes POST /audio/meeting-notes minute $0.004 Per use
Action items POST /audio/action-items minute $0.004 Per use
Podcast chapters POST /audio/chapters minute $0.004 Per use
Show notes POST /audio/show-notes minute $0.004 Per use
Keywords from audio POST /audio/keywords minute $0.004 Per use
Audio to a blog post POST /audio/to-blog minute $0.004 Per use
Moderate spoken audio POST /audio/moderate minute $0.004 Per use
Clean up a transcript POST /audio/clean-transcript 1,000 words $0.003 Per use
Search words in audio POST /audio/search minute $0.002 Per use
Text to speech POST /voice/tts 1,000 characters $0.005 Per use
SSML text to speech POST /voice/tts-ssml 1,000 characters $0.002 Per use
Spanish text to speech POST /voice/tts-es 1,000 characters $0.002 Per use
Convert audio POST /audio/convert minute $0.077 Soon
Trim audio POST /audio/trim minute $0.077 Soon
Normalize loudness POST /audio/normalize minute $0.077 Soon
Remove silence POST /audio/remove-silence minute $0.077 Soon
Reduce audio noise POST /audio/denoise minute $0.077 Soon
Merge audio POST /audio/merge minute $0.077 Soon
Split audio POST /audio/split minute $0.077 Soon
Audio metadata POST /audio/metadata file $0.077 Soon
Waveform image POST /audio/waveform minute $0.077 Soon
Transcribe a video POST /video/transcribe minute $0.079 Soon
Add subtitles to a video POST /video/subtitles minute $0.079 Soon
Burn subtitles into a video POST /video/burn-subtitles minute $0.077 Soon
Get the audio from a video POST /video/extract-audio minute $0.077 Soon
Convert a video POST /video/convert minute $0.077 Soon
Compress a video POST /video/compress minute $0.077 Soon
Trim a video POST /video/trim minute $0.077 Soon
Grab a video thumbnail POST /video/thumbnail video $0.077 Soon
Turn a video into a GIF POST /video/gif minute $0.077 Soon
Resize a video POST /video/resize minute $0.077 Soon
Add a watermark to a video POST /video/watermark minute $0.077 Soon
Extract frames from a video POST /video/frames minute $0.077 Soon
Read a video's metadata POST /video/metadata video $0.077 Soon
Make a video vertical POST /video/social-crop minute $0.077 Soon
Merge videos POST /video/merge minute $0.077 Soon
Summarise a video POST /video/summarize minute $0.084 Soon
Summarize a text POST /text/summarize 1,000 words $0.003 Per use
Summarize in bullet points POST /text/summarize-bullets 1,000 words $0.003 Per use
Executive summary POST /text/executive-summary 1,000 words $0.003 Per use
TL;DR POST /text/tldr 1,000 words $0.003 Per use
Summarize a web page POST /text/summarize-url URL $0.046 Per use
Expand text POST /text/expand 1,000 words $0.003 Per use
Shorten text POST /text/shorten 1,000 words $0.003 Per use
Rewrite text POST /text/rewrite 1,000 words $0.003 Per use
Paraphrase POST /text/paraphrase 1,000 words $0.003 Per use
Simplify text POST /text/simplify 1,000 words $0.003 Per use
Adjust reading level POST /text/reading-level 1,000 words $0.003 Per use
Change the tone POST /text/change-tone 1,000 words $0.003 Per use
Make text formal POST /text/formalize 1,000 words $0.003 Per use
Make text sound human POST /text/humanize 1,000 words $0.003 Per use
Check grammar POST /text/grammar 1,000 words $0.003 Per use
Check spelling POST /text/spellcheck 1,000 words $0.003 Per use
Fix punctuation POST /text/punctuation 1,000 words $0.003 Per use
Proofread POST /text/proofread 1,000 words $0.003 Per use
Readability score POST /text/readability 1,000 words Free
Detect language POST /text/detect-language 1,000 words $0.003 Per use
Sentiment analysis POST /text/sentiment item $0.003 Per use
Detect emotion in text POST /text/emotion item $0.003 Per use
Classify intent POST /text/intent item $0.003 Per use
Classify text POST /text/topic-classify item $0.003 Per use
Moderate content POST /text/moderate item $0.003 Per use
Detect spam POST /text/spam item $0.003 Per use
Find personal data POST /text/detect-pii 1,000 words $0.003 Per use
Redact personal data POST /text/redact-pii 1,000 words $0.003 Per use
Anonymize text POST /text/anonymize 1,000 words $0.003 Per use
Extract entities POST /text/extract-entities 1,000 words $0.003 Per use
Extract keywords POST /text/extract-keywords 1,000 words $0.003 Per use
Extract dates POST /text/extract-dates 1,000 words $0.003 Per use
Extract amounts POST /text/extract-amounts 1,000 words $0.003 Per use
Extract questions POST /text/extract-questions 1,000 words $0.003 Per use
Extract claims POST /text/extract-claims 1,000 words $0.003 Per use
Pull quotes POST /text/extract-quotes 1,000 words $0.003 Per use
Extract action items POST /text/extract-action-items 1,000 words $0.003 Per use
Text to JSON POST /text/to-json 1,000 words $0.003 Per use
Text to table POST /text/to-table 1,000 words $0.003 Per use
Text to bullets POST /text/to-bullets 1,000 words $0.003 Per use
Content outline POST /text/outline 1,000 words $0.003 Per use
Compare two texts POST /text/compare 1,000 words $0.003 Per use
Text similarity POST /text/semantic-similarity pair $0.002 Per use
Generate an FAQ POST /text/faq 1,000 words $0.003 Per use
Generate a quiz POST /text/quiz 1,000 words $0.003 Per use
Generate flashcards POST /text/flashcards 1,000 words $0.003 Per use
Ask your document POST /text/qa question $0.003 Per use
Generate text POST /text/generate 1,000 words $0.003 Per use
Write a blog post POST /text/blog-post article $0.003 Per use
Product descriptions POST /text/product-description item $0.003 Per use
Ad copy POST /text/ad-copy variant $0.003 Per use
Landing page copy POST /text/landing-copy block $0.003 Per use
Write an email POST /text/email-compose email $0.003 Per use
Subject lines POST /text/email-subject variant $0.003 Per use
Reply to an email POST /text/email-reply email $0.003 Per use
Support replies POST /text/support-reply ticket $0.003 Per use
Reply to reviews POST /text/review-reply review $0.003 Per use
Social posts POST /text/social-post post $0.003 Per use
Social thread POST /text/social-thread thread $0.003 Per use
Generate hashtags POST /text/hashtags post $0.003 Per use
Write headlines POST /text/headline variant $0.003 Per use
A/B copy variants POST /text/ab-variants variant $0.003 Per use
Name ideas POST /text/name-ideas batch $0.003 Per use
Slogans POST /text/slogan batch $0.003 Per use
Write a bio POST /text/bio bio $0.003 Per use
Cover letter POST /text/cover-letter letter $0.003 Per use
Interview questions POST /text/interview-questions batch $0.003 Per use
Video script POST /text/script script $0.003 Per use
Newsletter POST /text/newsletter issue $0.003 Per use
Changelog POST /text/changelog release $0.003 Per use
Content ideas POST /text/content-ideas batch $0.003 Per use
Score leads POST /text/lead-score item $0.003 Per use
Route tickets POST /text/ticket-route ticket $0.003 Per use
Summarize reviews POST /text/review-summary batch $0.003 Per use
Analyze feedback POST /text/feedback-analyze batch $0.003 Per use
Categorize expenses POST /text/expense-categorize item $0.003 Per use
Categorize products POST /text/product-categorize item $0.003 Per use
Product attributes POST /text/product-attributes item $0.003 Per use
Normalize product data POST /text/product-normalize item $0.003 Per use
Analyze logs POST /text/log-analyze 1,000 lines $0.003 Per use
Word counter POST /text/word-count 1,000 words Free
Number to words POST /text/number-to-words item Free
Case converter POST /text/case-convert document Free
NATO phonetic alphabet POST /text/nato-phonetic item Free
Caesar cipher & ROT13 POST /text/caesar-cipher item Free
Extract emails from text POST /text/extract-emails item Free
Translate text POST /translate/text 1,000 words $0.003 Per use
Translate an HTML page POST /translate/html 1,000 words $0.003 Per use
Translate a JSON locale file POST /translate/json key $0.003 Per use
Translate a CSV POST /translate/csv cell $0.003 Per use
Translate Markdown POST /translate/markdown 1,000 words $0.003 Per use
Translate subtitles POST /translate/srt 1,000 words $0.003 Per use
Translate a PDF POST /translate/pdf page $0.011 Per use
Translate a Word document POST /translate/docx page $0.057 Per use
Translate with a glossary POST /translate/glossary 1,000 words $0.003 Per use
Translate formal or informal POST /translate/formality 1,000 words $0.003 Per use
Translate keeping the tone POST /translate/tone-preserve 1,000 words $0.003 Per use
Translate for SEO POST /translate/seo 1,000 words $0.003 Per use
Translate a product catalog POST /translate/catalog item $0.003 Per use
Translate an email POST /translate/email email $0.003 Per use
Translate code comments POST /translate/code-comments 1,000 words $0.003 Per use
Transliterate POST /translate/transliterate 1,000 words $0.003 Per use
Explain slang POST /translate/slang 1,000 words $0.003 Per use
Adapt regional variants POST /translate/regional 1,000 words $0.003 Per use
Back-translate to check POST /translate/back 1,000 words $0.003 Per use
Format numbers & currency POST /locale/format-number item Free
Localize dates POST /locale/format-date item Free
Localize units POST /locale/units item Free
Translate text in a photo POST /translate/ocr image $0.011 Per use
Sort a list alphabetically POST /locale/sort 1,000 rows Free
Screenshot a website POST /web/screenshot URL $0.040 Per use
Full-page screenshot POST /web/screenshot-full URL $0.040 Per use
Mobile screenshot POST /web/screenshot-device URL $0.040 Per use
Screenshot one element POST /web/screenshot-element URL $0.040 Per use
Scheduled screenshots POST /web/screenshot-scheduled URL $0.040 Per use
Render a JavaScript page POST /web/render URL $0.040 Per use
Web page to Markdown POST /web/to-markdown URL $0.040 Per use
Web page to text POST /web/to-text URL $0.040 Per use
Extract an article POST /web/article URL $0.040 Per use
Scrape a website POST /web/scrape-selector URL $0.040 Per use
Scrape with AI POST /web/scrape-ai URL $0.046 Per use
Scrape to a schema POST /web/scrape-schema URL $0.046 Per use
Crawl a website POST /web/crawl page $0.040 Per use
Extract links POST /web/links URL $0.002 Per use
Extract images POST /web/images URL $0.002 Per use
Web table to CSV POST /web/tables URL $0.040 Per use
Audit contact details POST /web/contacts URL $0.002 Per use
Link preview POST /web/link-preview URL $0.002 Per use
Read meta tags POST /web/metadata URL Free
Extract JSON-LD POST /web/schema URL Free
RSS to JSON POST /web/rss-to-json feed Free
Find the RSS feed POST /web/rss-discover URL $0.002 Per use
Create an RSS feed POST /web/make-rss URL $0.040 Per use
Extract product data POST /web/product-extract URL $0.046 Per use
Extract a price POST /web/price-extract URL $0.046 Per use
Check if it's in stock POST /web/stock-extract URL $0.046 Per use
Extract reviews POST /web/reviews-extract URL $0.046 Per use
Extract a job posting POST /web/job-extract URL $0.046 Per use
Monitor a page for changes POST /web/monitor-changes check $0.002 Per use
Monitor visual changes POST /web/monitor-visual check $0.040 Per use
Track a price POST /web/monitor-price check $0.040 Per use
Back-in-stock alerts POST /web/monitor-stock check $0.040 Per use
Monitor a keyword POST /web/monitor-keyword check $0.002 Per use
Monitor uptime POST /web/uptime check $0.002 Per use
Multi-region uptime POST /web/uptime-multi check $0.002 Per use
Check an SSL certificate POST /web/ssl-check domain $0.002 Per use
Check domain expiry POST /web/domain-expiry domain $0.002 Per use
WHOIS lookup POST /web/whois domain $0.002 Per use
DNS lookup POST /web/dns domain $0.002 Per use
Check DNS propagation POST /web/dns-propagation domain $0.002 Per use
Inspect HTTP headers POST /web/headers URL $0.002 Per use
Check security headers POST /web/security-headers URL $0.002 Per use
Check redirects POST /web/redirect-chain URL $0.002 Per use
Check HTTP status POST /web/status URL $0.002 Per use
Find broken links POST /web/broken-links page $0.002 Per use
Detect a site's technology POST /web/tech-detect URL $0.040 Per use
Audit cookies POST /web/cookie-audit URL $0.040 Per use
Accessibility audit POST /web/accessibility URL $0.040 Per use
Measure Core Web Vitals POST /web/vitals URL $0.040 Per use
Prerender for bots POST /web/prerender URL $0.040 Per use
Generate meta tags POST /seo/meta-generate page $0.003 Per use
Audit a page for SEO POST /seo/audit URL $0.040 Per use
Check heading structure POST /seo/headings URL Free
Keyword density POST /seo/keyword-density URL Free
Audit internal links POST /seo/internal-links URL $0.002 Per use
Check the canonical tag POST /seo/canonical-check URL Free
Validate hreflang POST /seo/hreflang-check URL Free
Analyze robots.txt POST /seo/robots-analyze domain $0.002 Per use
Validate a sitemap POST /seo/sitemap-validate sitemap Free
Sitemap to JSON POST /seo/sitemap-to-json sitemap Free
Generate a sitemap POST /seo/sitemap-generate page $0.002 Per use
Generate JSON-LD POST /seo/schema-generate page $0.003 Per use
Validate Open Graph POST /seo/og-validate URL Free
Audit alt text POST /seo/alt-text-audit URL $0.066 Per use
SEO content brief POST /seo/content-outline keyword $0.003 Per use
Write click-worthy titles POST /seo/title-variants variant $0.003 Per use
SEO readability score POST /seo/readability page Free
Cluster keywords by intent POST /seo/keyword-cluster batch $0.002 Per use
YouTube description POST /seo/youtube-meta video $0.003 Per use
Optimize images for SEO POST /seo/image-optimize image $0.002 Soon
Validate a redirect map POST /seo/redirect-map-validate 1,000 rows Free
CSV to JSON POST /data/csv-to-json 1,000 rows Free
JSON to CSV POST /data/json-to-csv 1,000 rows Free
Excel to JSON POST /data/xlsx-to-json 1,000 rows $0.002 Per use
JSON to Excel POST /data/json-to-xlsx 1,000 rows $0.002 Per use
XML to JSON POST /data/xml-to-json document Free
JSON to XML POST /data/json-to-xml document Free
YAML to JSON POST /data/yaml-json document Free
Validate JSON Schema POST /data/json-validate document Free
Repair broken JSON POST /data/json-repair document $0.003 Per use
Format JSON POST /data/json-format document Free
Minify JSON POST /data/json-minify document Free
JSON to HTML table POST /data/json-to-html document Free
Clean a CSV POST /data/clean-csv 1,000 rows Free
Remove duplicate rows POST /data/dedupe-csv 1,000 rows Free
Fuzzy dedupe POST /data/dedupe-semantic 1,000 rows $0.002 Per use
Merge & join CSV files POST /data/merge-csv 1,000 rows Free
Transform a CSV POST /data/transform-csv 1,000 rows Free
Filter CSV rows POST /data/filter-csv 1,000 rows Free
CSV statistics POST /data/csv-stats 1,000 rows Free
Normalize names & addresses POST /data/normalize-names item $0.003 Per use
Normalize dates POST /data/normalize-dates item Free
Convert to UTF-8 POST /data/to-utf8 document Free
Compare text POST /data/diff document Free
Create a ZIP from text entries POST /data/zip MB Free
Unzip a file POST /data/unzip MB Free
Gzip POST /data/gzip MB Free
Mock data generator POST /data/fake 1,000 rows Free
Markdown to HTML POST /data/markdown-to-html document Free
HTML to Markdown POST /data/html-to-markdown document Free
HTML to text POST /data/html-to-text document Free
Sanitize HTML POST /data/html-sanitize document Free
Minify HTML POST /data/html-minify document Free
Minify CSS POST /data/css-minify document Free
Minify JavaScript POST /data/js-minify document Free
Convert units POST /data/convert-units item Free
Convert colors POST /data/color-convert item Free
Check an email address POST /verify/email-syntax item Free
Verify an email exists POST /verify/email-mx item $0.002 Per use
Spot throwaway emails POST /verify/email-disposable item $0.002 Per use
Find role emails POST /verify/email-role item Free
Fix email typos POST /verify/email-typo item Free
Clean your email list POST /verify/email-batch item $0.002 Per use
Validate a phone number POST /verify/phone item Free
Look up a phone carrier POST /verify/phone-carrier item $0.002 Per use
Validate an IBAN POST /verify/iban item Free
Check a SWIFT/BIC code POST /verify/swift item Free
Check an EU VAT number POST /verify/vat item $0.002 Per use
Check a tax ID format POST /verify/tax-id item Free
Validate a card number POST /verify/card-luhn item Free
Detect a card brand POST /verify/card-type item Free
Locate an IP address POST /verify/ip-geo item $0.002 Per use
Detect VPN and proxy POST /verify/ip-vpn item $0.002 Per use
Score bot traffic POST /verify/bot-score item $0.002 Per use
Validate a URL POST /verify/url item Free
Screen a link for danger POST /verify/url-safe item $0.002 Per use
Detect phishing POST /verify/phishing item $0.003 Per use
Detect injection attacks POST /verify/injection item Free
Check password strength POST /verify/password item Free
Validate a postal address POST /verify/address item $0.003 Per use
Check a postal code POST /verify/postal-code item Free
Validate a barcode POST /verify/barcode item Free
Parse a user agent POST /verify/user-agent item Free
Color contrast checker POST /verify/color-contrast item Free
Generate a UUID POST /dev/uuid batch Free
Hash a string POST /dev/hash item Free
Sign and verify a payload POST /dev/hmac item Free
Decode a JWT POST /dev/jwt-decode item Free
Create a signed JWT POST /dev/jwt-sign item Free
Generate a 2FA code POST /dev/totp item Free
Encrypt text POST /dev/encrypt item Free
Generate a password POST /dev/password-gen batch Free
Encode and decode Base64 POST /dev/base64 item Free
Encode and decode a URL POST /dev/url-encode item Free
Make a URL slug POST /dev/slug item Free
Convert between time zones POST /dev/timezone item Free
Convert a Unix timestamp POST /dev/epoch item Free
Count business days POST /dev/business-days item Free
Explain a cron expression POST /dev/cron-explain item Free
See the next cron runs POST /dev/cron-next item Free
Schedule a webhook POST /dev/cron-webhook run $0.002 Per use
Schedule a delayed callback POST /dev/delay callback $0.002 Per use
Shorten a link POST /dev/short-url link $0.002 Per use
Track link clicks POST /dev/short-url-stats link $0.002 Per use
Make a QR code POST /dev/qr-generate image Free
Add a logo to a QR code POST /dev/qr-logo image Free
Edit a QR after printing POST /dev/qr-dynamic qr $0.002 Per use
Read a QR code POST /dev/qr-decode image Free
Make a barcode POST /dev/barcode-generate image Free
Read a barcode from a photo POST /dev/barcode-decode image $0.002 Per use
Create a vCard POST /dev/vcard item Free
Create a calendar invite POST /dev/ical item Free
Build UTM campaign links POST /dev/utm item Free
Generate a regex POST /dev/regex-generate item $0.003 Per use
Explain a regex POST /dev/regex-explain item $0.003 Per use
Explain code POST /dev/code-explain 1,000 words $0.003 Per use
Document your code POST /dev/code-document 1,000 words $0.003 Per use
Turn a question into SQL POST /dev/text-to-sql query $0.003 Per use
Generate a JSON Schema POST /dev/json-schema-gen document $0.003 Per use
Generate unit tests POST /dev/unit-tests 1,000 words $0.003 Per use
Write a commit message POST /dev/commit-message diff $0.003 Per use
Generate a README POST /dev/readme repo $0.003 Per use
Reshape a webhook payload POST /dev/webhook-transform event Free
Sign and verify webhooks POST /dev/webhook-sign event Free
Run hundreds of HTTP requests POST /dev/http-batch request $0.002 Per use
Generate placeholder text POST /dev/lorem block $0.003 Per use
Subnet calculator POST /dev/subnet item Free
Remove tracking parameters from a URL POST /dev/url-clean item Free
Date difference and age calculator POST /dev/date-diff item Free
Regex tester POST /dev/regex-tester document Free
Fraction calculator POST /dev/fraction-calculator item Free
Percentage calculator POST /dev/percentage document Free
Base converter POST /dev/number-base document Free
Roman numeral converter POST /dev/roman document Free
GCD LCM calculator POST /dev/gcd-lcm document Free
BMI calculator POST /dev/bmi document Free
VAT calculator POST /dev/vat-calculator document Free
Sleep calculator POST /dev/sleep-calculator document Free
TDEE & BMR calculator POST /dev/calorie-needs document Free
Grade calculator POST /dev/grade-calculator document Free
Salary calculator POST /dev/salary-calculator document Free
Aspect ratio calculator POST /dev/aspect-ratio document Free
CAGR calculator POST /dev/cagr document Free
Circle calculator POST /dev/circle document Free
Ohm's law calculator POST /dev/ohm-law document Free
One rep max calculator POST /dev/one-rep-max document Free
Profit margin calculator POST /dev/profit-margin document Free
Simple interest calculator POST /dev/simple-interest document Free
Download time calculator POST /dev/download-time document Free
Discount calculator POST /dev/discount-calculator item Free
Time calculator POST /dev/time-calculator item Free
Body fat calculator POST /dev/body-fat document Free
Break even calculator POST /dev/break-even document Free
Cat age calculator POST /dev/cat-age document Free
Dog age calculator POST /dev/dog-age document Free
Due date calculator POST /dev/due-date document Free
GPA calculator POST /dev/gpa-calculator document Free
Heart rate zones POST /dev/heart-rate-zones document Free
Ideal weight calculator POST /dev/ideal-weight document Free
Ovulation calculator POST /dev/ovulation-calculator document Free
Speed distance time calculator POST /dev/speed-distance-time document Free
Water intake calculator POST /dev/water-intake document Free
Fuel cost calculator POST /dev/fuel-cost item Free
chmod calculator POST /dev/chmod-calculator item Free
Quadratic equation solver POST /dev/quadratic-equation item Free
Pythagorean theorem calculator POST /dev/pythagoras item Free
EV charge time calculator POST /dev/ev-charge-time document Free
Inflation calculator POST /dev/inflation-calculator document Free
A1C converter POST /dev/a1c-converter document Free
BAC calculator POST /dev/bac-calculator document Free
Dew point calculator POST /dev/dew-point document Free
Heat index calculator POST /dev/heat-index document Free
Macro calculator POST /dev/macro-calculator document Free
Moon phase calculator POST /dev/moon-phase document Free
Plate calculator POST /dev/plate-calculator document Free
Tire size calculator POST /dev/tire-size document Free
Permutation & combination calculator POST /dev/permutation-combination item Free
Resistor color code calculator POST /dev/resistor-color-code item Free
ROI calculator POST /dev/roi item Free
Bell number calculator POST /math/bell-number document Free
Equilateral triangle calculator POST /math/equilateral-triangle document Free
Euler triangle OI distance calculator POST /math/euler-triangle-formula document Free
Intersecting chords calculator POST /math/intersecting-chords document Free
Jacobsthal number calculator POST /math/jacobsthal-number document Free
Oblique cylinder calculator POST /math/oblique-cylinder document Free
Spherical excess calculator POST /math/spherical-excess document Free
Subfactorial calculator POST /math/subfactorial document Free
Torus sector calculator POST /math/torus-sector document Free
Tribonacci number calculator POST /math/tribonacci-number document Free
Trirectangular tetrahedron calculator POST /math/trirectangular-tetrahedron document Free
Break even occupancy calculator POST /finance/break-even-occupancy document Free
Capital gains tax estimator POST /finance/capital-gains-tax document Free
DSCR calculator POST /finance/debt-service-coverage document Free
FHA MIP calculator POST /finance/fha-mip document Free
FIRE number calculator POST /finance/fire-number document Free
Hard money loan calculator POST /finance/hard-money-loan document Free
Interest capitalization calculator POST /finance/interest-capitalization document Free
Mortgage recast calculator POST /finance/mortgage-recast document Free
One percent rule calculator POST /finance/one-percent-rule document Free
Rule of 78 rebate calculator POST /finance/rule-of-78-rebate document Free
SS claim breakeven calculator POST /finance/ss-claim-breakeven document Free
French Republican calendar POST /date/french-republican item Free
Interval intersection POST /date/interval-intersection item Free
Juche era converter POST /date/juche item Free
Julian ↔ Gregorian converter POST /date/julian-calendar item Free
Leap seconds UTC↔TAI POST /date/leap-seconds item Free
NTP ↔ Unix timestamp POST /date/ntp-timestamp item Free
Parse relative dates POST /date/relative-parse item Free
Roman Kalends/Nones/Ides POST /date/roman-date item Free
UUID v1/v6/v7 to timestamp POST /date/uuid-time item Free
Weekday occurrence in month POST /date/weekday-occurrence item Free
Sphere calculator POST /dev/sphere item Free
Voltage divider calculator POST /dev/voltage-divider item Free
Polygon apothem calculator POST /math/polygon-apothem document Free
Taxable equivalent yield calculator POST /finance/taxable-equivalent-yield document Free
Abjad numeral converter free online POST /math/abjad-numerals item Free
Age ratio calculator POST /math/age-ratio item Free
Boat and stream speed calculator free online POST /math/boat-stream item Free
CP SP MP calculator POST /math/cp-sp-mp item Free
Hebrew numeral converter and gematria free POST /math/hebrew-numerals item Free
Largest remainder seat allocation free POST /math/largest-remainder item Free
Maya vigesimal numeral converter free POST /math/maya-numerals item Free
Pie chart angles from values free online POST /math/pie-chart-angles item Free
Pipes and cisterns calculator free online POST /math/pipes-cisterns item Free
Sainte-Laguë seat allocation calculator free POST /math/sainte-lague item Free
Orthodox Christmas date POST /date/orthodox-christmas document Free
Victoria Day (Canada) date POST /date/victoria-day-ca document Free
Week of month calculator POST /date/week-of-month document Free
CD early withdrawal penalty POST /finance/cd-early-penalty document Free
Lease buyout cost POST /finance/lease-buyout-cost document Free
Mortgage offset account savings POST /finance/mortgage-offset document Free
Negative equity roll-in POST /finance/negative-equity-rollin document Free
Mortgage points break-even POST /finance/points-breakeven document Free
Prepayment penalty calculator POST /finance/prepayment-penalty document Free
Quarterly estimated tax POST /finance/quarterly-estimated-tax document Free
Standard vs itemized deduction POST /finance/standard-vs-itemized document Free
Gall–Peters projection calculator POST /geo/gall-peters document Free
Geocentric radius calculator POST /geo/geocentric-radius document Free
Vertical sextant angle distance POST /geo/vertical-sextant-angle document Free
Arithmetico-geometric series sum POST /math/arithmetico-geometric-series document Free
Chain discount / net price factor POST /math/chain-discount document Free
Hexagonal prism calculator POST /math/hexagonal-prism document Free
Markdown percentage calculator POST /math/markdown-percent document Free
Motzkin number calculator POST /math/motzkin-number document Free
Power of a point calculator POST /math/power-of-a-point document Free
Regular tetrahedron calculator POST /math/regular-tetrahedron document Free
Roman chronogram calculator POST /math/roman-chronogram document Free
Square pyramid calculator POST /math/square-pyramid document Free
Stair rise and run calculator POST /math/stairs-rise-run document Free
Tangent-secant theorem calculator POST /math/tangent-secant-theorem document Free
Wastage allowance calculator POST /math/wastage-allowance document Free
Hedges g effect size POST /stat/hedges-g document Free
Matthews correlation (MCC) POST /stat/matthews-corr document Free
Haversine distance - great-circle km, mi and m between two points POST /geo/haversine item Free
Absolute value equation solver POST /algebra/absolute-value-equation item Free
Finite series partial sum POST /algebra/partial-sum-series item Free
2×2 system by substitution POST /algebra/system-2x2-substitution item Free
Kepler's third law calculator POST /astro/kepler-third-law item Free
Physical size from angular diameter POST /astro/physical-size-from-angular item Free
Propellant mass fraction calculator POST /astro/propellant-mass-fraction item Free
Limiting reactant calculator POST /chem/limiting-reactant item Free
Moles of product calculator POST /chem/moles-of-product item Free
Electrolysis overpotential calculator POST /chem/overpotential item Free
Percent yield calculator POST /chem/percent-yield item Free
Darken a hex color by percentage POST /color/darken item Free
RGB to CMYK converter POST /color/rgb-cmyk item Free
Binomial coefficients row POST /combo/binomial-row item Free
Decibel ratio converter POST /conv/decibel-ratio item Free
Electrical conductivity converter POST /conv/electrical-conductivity item Free
Convert equivalent dose POST /conv/equivalent-dose item Free
HP to kW converter POST /conv/hp-to-kw item Free
Length converter POST /conv/length item Free
Convert mass moment of inertia POST /conv/moment-of-inertia item Free
Pressure gradient converter POST /conv/pressure-gradient item Free
Stone to lbs converter POST /conv/stone-to-lbs item Free
Temperature converter POST /conv/temperature item Free
Add working days to a date POST /date/add-workdays item Free
US daylight saving start date POST /date/daylight-saving-start-us item Free
Days elapsed in the quarter POST /date/days-elapsed-quarter item Free
Easter Sunday date POST /date/easter item Free
Generation by birth year POST /date/generation-cohort item Free
Battery runtime from Ah POST /elec/battery-runtime-ah item Free
Capacitor voltage rating selector POST /elec/capacitor-voltage-rating item Free
Drift velocity calculator POST /elec/drift-velocity item Free
Transformer turns ratio calculator POST /elec/transformer-turns item Free
Damm check digit POST /enc/damm item Free
Keyword substitution cipher POST /enc/keyword-cipher item Free
Scytale cipher POST /enc/scytale item Free
encodeURIComponent tool POST /enc/url-component item Free
UTF-16 code unit converter POST /enc/utf16 item Free
Octal to decimal converter POST /fmt/octal-decimal item Free
Cardinal to ordinal number converter POST /fmt/ordinal item Free
Initial bearing calculator POST /geo/bearing item Free
Crosswind component calculator POST /geo/crosswind-component item Free
Geohash encoder POST /geo/geohash-encode item Free
Geographic midpoint calculator POST /geo/midpoint item Free
Geographic polygon perimeter POST /geo/polygon-perimeter item Free
Pythagorean equirectangular distance POST /geo/pythagorean-geo-distance item Free
Capsule volume & surface area POST /geom/capsule item Free
Hyperbola eccentricity POST /geom/hyperbola-eccentricity item Free
Polygon interior angle calculator POST /geom/polygon-interior-angle item Free
Star polygon area calculator POST /geom/star-polygon-area item Free
Triangle incenter calculator POST /geom/triangle-incenter item Free
Mifflin-St Jeor BMR calculator POST /health/bmr-mifflin item Free
Caffeine dose by body weight POST /health/caffeine-per-kg item Free
eGFR kidney function calculator POST /health/egfr item Free
Fat mass from body fat % POST /health/fat-mass-from-percent item Free
Ponderal index calculator POST /health/ponderal-index item Free
Metronome subdivision calculator POST /hobby/metronome-subdivision item Free
Home circuit count calculator POST /home/circuit-count item Free
Metal roofing panel calculator POST /home/metal-roofing-panels item Free
Sod calculator POST /home/sod item Free
Harmonic series calculator POST /math/harmonic-series item Free
Prime factorization POST /math/prime-factorization item Free
Projectile range calculator POST /mech/projectile-range item Free
Time of flight calculator POST /mech/projectile-time-of-flight item Free
Simple pendulum period POST /mech/simple-pendulum item Free
Flywheel spin-down time POST /mech/spin-down-time item Free
List all ordered compositions of an integer POST /numth/compositions-list item Free
Discrete logarithm solver POST /numth/discrete-log item Free
Divisors of a number POST /numth/divisor-list item Free
Is prime checker POST /numth/prime-checker item Free
Acoustic resonance Q factor calculator POST /optics/acoustic-resonance-q-factor item Free
Lensmaker's equation POST /optics/lensmaker item Free
Wavelength calculator POST /phys/wavelength item Free
Durbin-Watson statistic calculator POST /stat/durbin-watson item Free
Tukey HSD post-hoc POST /stat/tukey-hsd item Free
Reverse line order POST /str/reverse-lines item Free
Charles's law calculator POST /thermo/charles-law item Free
EV trip charging cost POST /travel/ev-trip-cost item Free
Half-angle calculator POST /trig/half-angle item Free
Rectangular to polar converter POST /trig/rectangular-to-polar item Free
Midline of a sinusoidal function POST /trig/sinusoid-midline item Free
EMC field strength converter POST /conv/emc-field-strength item Free
First-order reaction time calculator POST /chem/first-order-time item Free
Absorbed dose converter POST /conv/absorbed-dose item Free
Acceleration converter POST /conv/acceleration item Free
Mole unit converter POST /conv/amount-of-substance item Free
Angle converter POST /conv/angle item Free
Angular acceleration converter POST /conv/angular-acceleration item Free
Angular velocity converter POST /conv/angular-velocity item Free
Area converter POST /conv/area item Free
Astronomical distance converter POST /conv/astronomical-distance item Free
Blood glucose converter POST /conv/blood-glucose item Free
Bra size converter POST /conv/bra-size item Free
Capacitance converter POST /conv/capacitance item Free
Catalytic activity converter POST /conv/catalytic-activity item Free
Cholesterol unit converter POST /conv/cholesterol item Free
Clothing size converter POST /conv/clothing-size item Free
Molar concentration converter POST /conv/concentration item Free
Conductance converter POST /conv/conductance item Free
Data transfer rate converter POST /conv/data-rate item Free
Digital storage converter POST /conv/data-size item Free
Density converter POST /conv/density item Free
Dynamic viscosity converter POST /conv/dynamic-viscosity item Free
Electric charge converter POST /conv/electric-charge item Free
Electric current converter POST /conv/electric-current item Free
Electric field strength converter POST /conv/electric-field item Free
Energy converter POST /conv/energy item Free
Fahrenheit to Celsius converter POST /conv/fahrenheit-to-celsius item Free
Volume flow rate converter POST /conv/flow-rate item Free
Force converter POST /conv/force item Free
Frequency converter POST /conv/frequency item Free
Frequency wavelength converter POST /conv/frequency-wavelength item Free
Fuel economy converter POST /conv/fuel-economy item Free
Fuel price unit converter POST /conv/fuel-price item Free
Grain weight converter POST /conv/grain-weight item Free
Hat size converter POST /conv/hat-size item Free
Heat flux density converter POST /conv/heat-flux item Free
Heat transfer coefficient converter POST /conv/heat-transfer-coefficient item Free
Illuminance converter POST /conv/illuminance item Free
Inductance converter POST /conv/inductance item Free
Gold karat converter POST /conv/karat-gold item Free
Kinematic viscosity converter POST /conv/kinematic-viscosity item Free
Luminance converter POST /conv/luminance item Free
Luminous flux converter POST /conv/luminous-flux item Free
Luminous intensity converter POST /conv/luminous-intensity item Free
Magnetic flux converter POST /conv/magnetic-flux item Free
Magnetic flux density converter POST /conv/magnetic-flux-density item Free
Mass converter POST /conv/mass item Free
Mass flow rate converter POST /conv/mass-flow-rate item Free
Molar mass converter POST /conv/molar-mass item Free
Momentum converter POST /conv/momentum item Free
Running pace converter POST /conv/pace item Free
Paper size dimensions POST /conv/paper-size item Free
Paper weight converter POST /conv/paper-weight item Free
Power converter POST /conv/power item Free
PPM percent converter POST /conv/ppm item Free
Radiation exposure converter POST /conv/radiation-exposure item Free
Radioactivity converter POST /conv/radioactivity item Free
Electrical resistance converter POST /conv/resistance item Free
Electrical resistivity converter POST /conv/resistivity item Free
Ring size converter POST /conv/ring-size item Free
Roof pitch converter POST /conv/roof-pitch item Free
Shoe size converter POST /conv/shoe-size item Free
Slope grade converter POST /conv/slope-grade item Free
Solid angle converter POST /conv/solid-angle item Free
Sound pressure level converter POST /conv/sound-level item Free
Specific energy converter POST /conv/specific-energy item Free
Specific heat capacity converter POST /conv/specific-heat item Free
Specific volume converter POST /conv/specific-volume item Free
Speed converter POST /conv/speed item Free
Surface tension converter POST /conv/surface-tension item Free
Thermal conductivity converter POST /conv/thermal-conductivity item Free
Thermal resistance converter POST /conv/thermal-resistance item Free
Time unit converter POST /conv/time item Free
Torque converter POST /conv/torque item Free
Screen size converter POST /conv/tv-size item Free
Points to pixels converter POST /conv/typography-pt-px item Free
PX to EM converter POST /conv/typography-px-em item Free
px to rem converter POST /conv/typography-px-rem item Free
Voltage converter POST /conv/voltage item Free
Volume converter POST /conv/volume item Free
Water hardness converter POST /conv/water-hardness item Free
Wire gauge converter POST /conv/wire-gauge item Free
Complete the square calculator POST /algebra/complete-the-square item Free
Cross product calculator POST /algebra/cross-product item Free
Exponent rules calculator POST /algebra/exponent-rules item Free
Linear inequality solver POST /algebra/inequality-solver item Free
Matrix inverse calculator POST /algebra/matrix-inverse item Free
Matrix multiplication calculator POST /algebra/matrix-multiply item Free
Polynomial long division calculator POST /algebra/polynomial-divide item Free
Polynomial GCD calculator POST /algebra/polynomial-gcd item Free
Reduced row echelon form calculator POST /algebra/rref item Free
3×3 system of equations solver POST /algebra/system-3x3 item Free
Absolute magnitude calculator POST /astro/absolute-magnitude item Free
Light travel time calculator POST /astro/light-travel-time item Free
Planet density calculator POST /astro/planet-density item Free
Schwarzschild radius calculator POST /astro/schwarzschild-radius item Free
Surface gravity calculator POST /astro/surface-gravity item Free
Telescope resolution calculator POST /astro/telescope-resolution item Free
Arrhenius equation calculator POST /chem/arrhenius item Free
Arrhenius temperature calculator POST /chem/arrhenius-temperature item Free
Average molecular speed calculator POST /chem/average-molecular-speed item Free
Average rate of reaction calculator POST /chem/average-reaction-rate item Free
Avogadro's law moles calculator POST /chem/avogadro-law-moles item Free
Boiling point elevation calculator POST /chem/boiling-point-elevation item Free
Born-Haber lattice energy calculator POST /chem/born-haber-cycle item Free
Charles's law final volume calculator POST /chem/charles-final-volume item Free
Vaporization enthalpy calculator POST /chem/clausius-clapeyron-enthalpy item Free
Combined gas law final volume calculator POST /chem/combined-gas-final-volume item Free
Cryoscopic constant calculator POST /chem/cryoscopic-constant item Free
Decay constant calculator POST /chem/decay-constant-half-life item Free
Degree of dissociation calculator POST /chem/degree-dissociation-from-i item Free
Dilution factor calculator POST /chem/dilution-factor item Free
Degree of dissociation calculator POST /chem/dissociation-from-kc item Free
Empirical formula from percent composition calculator POST /chem/empirical-from-percent item Free
Heat of formation from reaction calculator POST /chem/enthalpy-of-formation-unknown item Free
Molar enthalpy calculator POST /chem/enthalpy-per-mole item Free
Equilibrium constant from Gibbs calculator POST /chem/equilibrium-from-gibbs item Free
Equilibrium yield calculator POST /chem/equilibrium-yield item Free
Formula units calculator POST /chem/formula-units item Free
Fraction of molecules above Ea calculator POST /chem/fraction-molecules-above-ea item Free
Freezing point depression calculator POST /chem/freezing-point-depression-molality item Free
Fuel energy content calculator POST /chem/fuel-energy-content item Free
Effusion remaining fraction calculator POST /chem/gas-leak-effusion-fraction item Free
Gas stoichiometry volume calculator POST /chem/gas-stoichiometry-volume item Free
Gas volume at STP calculator POST /chem/gas-stp-volume item Free
Gas temperature from P, V, n calculator POST /chem/gas-temperature-from-ptv item Free
Gas volume at NTP calculator POST /chem/gas-volume-at-ntp item Free
Gibbs free energy calculator POST /chem/gibbs-from-enthalpy-entropy item Free
Grams of product from moles calculator POST /chem/grams-of-product-from-moles item Free
Grams of solute for molarity calculator POST /chem/grams-solute-for-molarity item Free
Instantaneous rate from tangent calculator POST /chem/instantaneous-rate item Free
Equilibrium constant at new temperature POST /chem/k-at-new-temperature item Free
Kp from partial pressures calculator POST /chem/kp-from-partial-pressures item Free
Ksp from solubility calculator POST /chem/ksp-from-solubility item Free
Le Chatelier pressure shift calculator POST /chem/le-chatelier-pressure-shift item Free
Limiting reagent from masses calculator POST /chem/limiting-reactant-two item Free
Mass percent to molality calculator POST /chem/mass-percent-to-molality item Free
Mass percent to ppm converter POST /chem/mass-percent-to-ppm item Free
Mass to gas volume calculator POST /chem/mass-to-gas-volume item Free
Mass-to-mass stoichiometry calculator POST /chem/mass-to-mass-stoich item Free
mg/L to molarity calculator POST /chem/mg-per-liter-to-molarity item Free
Molar concentration calculator POST /chem/molar-concentration item Free
Molar mass from boiling point elevation POST /chem/molar-mass-from-bp-elevation item Free
Molar mass from gas density calculator POST /chem/molar-mass-from-gas-density item Free
Molarity from moles and volume calculator POST /chem/molarity-from-moles-volume item Free
Molarity to molality calculator POST /chem/molarity-to-molality item Free
Mole fraction to mass percent calculator POST /chem/mole-fraction-to-mass-percent item Free
Osmolarity calculator POST /chem/osmolarity item Free
Oxygen for combustion calculator POST /chem/oxygen-required-combustion item Free
Particles to moles calculator POST /chem/particles-to-moles item Free
Percent composition calculator POST /chem/percent-composition item Free
Percent to molarity calculator POST /chem/percent-to-molarity item Free
Percent water in hydrate calculator POST /chem/percent-water-in-hydrate item Free
Strong acid pH calculator POST /chem/ph-strong-acid item Free
PPB concentration calculator POST /chem/ppb-concentration item Free
PPM from molarity calculator POST /chem/ppm-from-molarity item Free
Equilibrium direction predictor POST /chem/q-vs-k-direction item Free
Rate constant from half-life calculator POST /chem/rate-constant-from-half-life item Free
Graham's law calculator POST /chem/rate-of-effusion item Free
Reaction order from rate data calculator POST /chem/reaction-order-from-rates item Free
Solution boiling point calculator POST /chem/solution-boiling-point item Free
Specific heat from calorimetry calculator POST /chem/specific-heat-from-calorimetry item Free
Stock solution volume calculator POST /chem/stock-solution-volume item Free
Theoretical moles of product calculator POST /chem/theoretical-moles-product item Free
Theoretical yield from limiting reactant calculator POST /chem/theoretical-yield-from-limiting item Free
Total ion concentration calculator POST /chem/total-ion-concentration item Free
Total pressure of gas mixture calculator POST /chem/total-pressure-gas-mixture item Free
Van der Waals pressure calculator POST /chem/van-der-waals-pressure item Free
Vapor pressure molar mass calculator POST /chem/vapor-pressure-molar-mass item Free
Volume percent calculator POST /chem/volume-percent item Free
Volume-to-volume gas stoichiometry calculator POST /chem/volume-to-volume-gas-stoich item Free
Work of gas expansion calculator POST /chem/work-gas-expansion item Free
Zero-order half-life calculator POST /chem/zero-order-half-life item Free
WCAG contrast ratio checker POST /color/contrast item Free
RGB to hex converter POST /color/rgb-hex item Free
RGB to HSV converter POST /color/rgb-hsv item Free
RGB to LAB converter POST /color/rgb-lab item Free
Color temperature to RGB POST /color/temperature item Free
Tetradic color scheme generator POST /color/tetradic item Free
Combinations with repetition POST /combo/combinations-with-repetition item Free
Handshake problem calculator POST /combo/handshake item Free
Monotone lattice paths on an a×b grid POST /combo/lattice-paths item Free
Unsigned Stirling numbers of the first kind POST /combo/stirling-first item Free
Butter measurement converter POST /cook/butter item Free
Cake tin size converter POST /cook/cake-tin item Free
Honey cups to grams converter POST /cook/honey item Free
Pints to liters converter POST /cook/pints-liters item Free
Teaspoons to ml converter POST /cook/tsp-ml item Free
Add months to a date POST /date/add-months item Free
Birthstone by birth month POST /date/birthstone item Free
Chinese zodiac sign calculator POST /date/chinese-zodiac item Free
Days between two dates POST /date/days-between item Free
Days elapsed in the year POST /date/days-elapsed-year item Free
Easter Sunday date calculator POST /date/easter-sunday item Free
Julian Day to date converter POST /date/from-julian-day item Free
Golden number and epact calculator POST /date/golden-number item Free
ISO week number calculator POST /date/iso-week-number item Free
ISO week to date converter POST /date/iso-week-to-date item Free
First and last day of month POST /date/month-start-end item Free
Next leap year finder POST /date/next-leap-year item Free
Next occurrence of a weekday POST /date/next-weekday item Free
Subtract days from a date POST /date/subtract-days item Free
Antenna length calculator POST /elec/antenna-length item Free
Battery runtime calculator POST /elec/battery-runtime-wh item Free
Capacitor energy calculator POST /elec/capacitor-energy item Free
Speaker crossover calculator POST /elec/crossover-frequency item Free
dBm to dBW calculator POST /elec/dbm-to-dbw item Free
dBm to watts calculator POST /elec/dbm-to-watts item Free
Electric potential calculator POST /elec/electric-potential item Free
EMF terminal voltage calculator POST /elec/emf-internal-resistance item Free
Inductor energy calculator POST /elec/inductor-energy item Free
kWh calculator POST /elec/kwh-calculator item Free
Inverting amplifier calculator POST /elec/op-amp-inverting item Free
Electrical power calculator POST /elec/power-vi item Free
Parallel resistance calculator POST /elec/resistors-parallel item Free
RLC resonant frequency calculator POST /elec/rlc-resonance item Free
Smoothing capacitor calculator POST /elec/smoothing-capacitor item Free
Solenoid magnetic field calculator POST /elec/solenoid-field item Free
Baconian cipher encoder and decoder POST /enc/bacon item Free
Base45 encoder and decoder POST /enc/base45 item Free
Base64url encoder and decoder POST /enc/base64url item Free
Columnar transposition cipher POST /enc/columnar item Free
Text to ASCII codes converter POST /enc/decimal-ascii item Free
Four-square cipher encoder and decoder POST /enc/four-square item Free
HTML entities encoder and decoder POST /enc/html-entities item Free
Morse code translator POST /enc/morse item Free
Quoted-printable encoder and decoder POST /enc/quoted-printable item Free
ROT47 encoder and decoder POST /enc/rot47 item Free
Flag semaphore translator POST /enc/semaphore item Free
Trithemius cipher encoder and decoder POST /enc/trithemius item Free
Vigenère cipher encoder and decoder POST /enc/vigenere item Free
Base36 encoder POST /fmt/base36 item Free
BCD converter POST /fmt/bcd item Free
Binary to decimal converter POST /fmt/binary-decimal item Free
Decimal to hex converter POST /fmt/decimal-hex item Free
Engineering notation converter POST /fmt/engineering-notation item Free
Greek numeral converter POST /fmt/greek-numerals item Free
Percent to fraction converter POST /fmt/percent-fraction item Free
Roman fraction converter POST /fmt/roman-fraction item Free
Significant figures rounder POST /fmt/sig-figs item Free
Along-track distance calculator POST /geo/along-track-distance item Free
Compass direction to bearing POST /geo/compass-to-bearing item Free
Geohash decoder POST /geo/geohash-decode item Free
Great-circle path intersection POST /geo/great-circle-intersection item Free
Magnetic to true bearing POST /geo/magnetic-true-bearing item Free
Geographic polygon area POST /geo/polygon-area item Free
Rhumb line distance calculator POST /geo/rhumb-distance item Free
Map tile to lat/lon POST /geo/tile-to-latlon item Free
UTM to lat/lon converter POST /geo/utm-to-latlon item Free
Web Mercator projection calculator POST /geo/web-mercator-project item Free
Chord length calculator POST /geom/chord-length item Free
Circle through three points POST /geom/circle-from-3-points item Free
Cone volume calculator POST /geom/cone item Free
Dodecahedron calculator POST /geom/dodecahedron item Free
Ellipse calculator POST /geom/ellipse item Free
Line intersection calculator POST /geom/line-intersection item Free
Pipe volume calculator POST /geom/pipe-volume item Free
Polygon area calculator POST /geom/polygon-area-shoelace item Free
Prism surface area calculator POST /geom/prism-surface item Free
Pyramid volume calculator POST /geom/pyramid item Free
Rhombus calculator POST /geom/rhombus item Free
Slope calculator POST /geom/slope item Free
Spherical segment calculator POST /geom/spherical-segment item Free
Square pyramid volume POST /geom/square-pyramid-solver item Free
Torus volume calculator POST /geom/torus item Free
45-45-90 triangle calculator POST /geom/triangle-45-45-90 item Free
Circumcenter calculator POST /geom/triangle-circumcenter item Free
SSA triangle calculator POST /geom/triangle-ssa item Free
Calorie deficit calculator POST /health/calorie-deficit item Free
Cycling speed from power calculator POST /health/cycling-speed-power item Free
Body frame size calculator POST /health/frame-size item Free
Lean body mass calculator POST /health/lean-body-mass item Free
Maximum heart rate calculator POST /health/max-heart-rate item Free
Pace to speed converter POST /health/pace-to-speed item Free
Pulse pressure calculator POST /health/pulse-pressure item Free
Swimming calorie calculator POST /health/swimming-calories item Free
Rockport one-mile walk VO2 max calculator POST /health/vo2max-rockport item Free
Walking calorie calculator POST /health/walking-calories item Free
Guitar capo key calculator POST /hobby/capo-key item Free
Crochet yarn estimator POST /hobby/crochet-yarn item Free
Dice probability calculator POST /hobby/dice-probability item Free
Flash guide number calculator POST /hobby/flash-guide-number item Free
Frequency to note calculator POST /hobby/frequency-to-note item Free
Hyperfocal distance calculator POST /hobby/hyperfocal item Free
Line height calculator POST /hobby/line-height item Free
500 rule calculator POST /hobby/rule-500 item Free
Baseboard trim calculator POST /home/baseboard item Free
Brick calculator POST /home/bricks item Free
Drywall sheet calculator POST /home/drywall item Free
Fence picket calculator POST /home/fence-pickets item Free
Grass seed calculator POST /home/grass-seed item Free
Mulch calculator POST /home/mulch item Free
Paint quantity calculator POST /home/paint-needed item Free
Rafter length calculator POST /home/rafter-length item Free
Retaining wall block calculator POST /home/retaining-wall-blocks item Free
Tile grout calculator POST /home/tile-grout item Free
Room wall area calculator POST /home/wall-area item Free
Cost per day calculator POST /life/cost-per-day item Free
Cost per use calculator POST /life/cost-per-use item Free
Emergency fund calculator POST /life/emergency-fund item Free
Hourly to salary converter POST /life/hourly-to-salary item Free
Reverse sales tax calculator POST /life/reverse-sales-tax item Free
Rule of 72 calculator POST /life/rule-of-72 item Free
Geometric sequence calculator POST /math/geometric-sequence item Free
Pell number calculator POST /math/pell-number item Free
Perfect square checker POST /math/square-number item Free
Sum of first n cubes POST /math/sum-of-cubes item Free
Superfactorial calculator POST /math/superfactorial item Free
Telescoping series sum POST /math/telescoping-sum item Free
Tetrahedral number calculator POST /math/tetrahedral-number item Free
Acceleration calculator POST /mech/acceleration item Free
Circular motion velocity calculator POST /mech/circular-velocity item Free
Free fall time calculator POST /mech/free-fall-time item Free
Friction force calculator POST /mech/friction-force item Free
Inelastic collision calculator POST /mech/inelastic-collision item Free
Lever calculator POST /mech/lever item Free
Gravitational potential energy calculator POST /mech/potential-energy item Free
Projectile max height calculator POST /mech/projectile-max-height item Free
RPM to linear speed calculator POST /mech/rpm-to-linear item Free
Spring potential energy calculator POST /mech/spring-potential-energy item Free
Velocity components calculator POST /mech/velocity-components item Free
Weight calculator POST /mech/weight-force item Free
Abundant number checker POST /numth/abundant-number item Free
Carmichael function calculator POST /numth/carmichael-function item Free
Chinese remainder theorem solver POST /numth/chinese-remainder item Free
Collatz conjecture calculator POST /numth/collatz item Free
Coprime checker POST /numth/coprime-checker item Free
Kaprekar number checker POST /numth/kaprekar-number item Free
Nth prime calculator POST /numth/nth-prime item Free
Prime factorization calculator POST /numth/prime-factorization item Free
Primitive root calculator POST /numth/primitive-root item Free
Smith number checker POST /numth/smith-number item Free
Double slit calculator POST /optics/double-slit item Free
Focal length calculator POST /optics/focal-length item Free
Refractive index calculator POST /optics/refractive-index item Free
Thin lens calculator POST /optics/thin-lens item Free
Sound level distance calculator POST /phys/decibel-distance item Free
Frequency calculator POST /phys/frequency item Free
String harmonic frequency calculator POST /phys/harmonic-string item Free
Bayes theorem calculator POST /prob/bayes-theorem item Free
Binomial probability calculator POST /prob/binomial-distribution item Free
Lottery odds calculator POST /prob/lottery-odds item Free
Negative binomial calculator POST /prob/negative-binomial item Free
Factor of safety calculator POST /sci/factor-of-safety item Free
Poisson's ratio calculator POST /sci/poisson-ratio item Free
Engineering strain calculator POST /sci/strain item Free
Correlation coefficient calculator POST /stat/correlation item Free
Mean absolute deviation calculator POST /stat/mean-absolute-deviation item Free
Percentile calculator POST /stat/percentile item Free
Standard deviation calculator POST /stat/standard-deviation item Free
Convert to alternating case POST /str/alternating-case item Free
Convert to camelCase POST /str/camel-case item Free
Count characters POST /str/char-count item Free
Convert to CONSTANT_CASE POST /str/constant-case item Free
Count vowels and consonants POST /str/count-vowels item Free
Word frequency counter POST /str/frequency item Free
Remove all whitespace POST /str/remove-whitespace item Free
Repeat text POST /str/repeat item Free
Text to slug POST /str/slugify item Free
Convert to uppercase POST /str/uppercase item Free
Boiling point altitude calculator POST /thermo/boiling-point-altitude item Free
Combined gas law calculator POST /thermo/combined-gas-law item Free
Coefficient of performance calculator POST /thermo/cop-refrigerator item Free
Volumetric flow rate calculator POST /thermo/flow-rate item Free
Carnot efficiency calculator POST /thermo/heat-engine-efficiency item Free
Latent heat calculator POST /thermo/latent-heat item Free
Poiseuille flow calculator POST /thermo/poiseuille-flow item Free
Stefan-Boltzmann calculator POST /thermo/stefan-boltzmann item Free
Volumetric expansion calculator POST /thermo/volumetric-expansion item Free
Carry-on size checker POST /travel/carry-on-check item Free
EV range calculator POST /travel/ev-range item Free
Jet lag recovery calculator POST /travel/jet-lag-recovery item Free
Layover connection time checker POST /travel/layover-time item Free
Trip fuel volume calculator POST /travel/trip-fuel-volume item Free
Trip total cost calculator POST /travel/trip-total-cost item Free
Degrees to radians converter POST /trig/deg-to-rad item Free
Hypotenuse calculator POST /trig/hypotenuse item Free
Arcsine calculator POST /trig/inverse-sin item Free
Trig identity verifier POST /trig/pythagorean-identity item Free
Secant, cosecant & cotangent calculator POST /trig/secant-cosecant item Free
Unit circle calculator POST /trig/unit-circle item Free
Binomial expansion calculator POST /algebra/binomial-expansion item Free
Cramer's rule calculator POST /algebra/cramers-rule item Free
Cubic equation solver POST /algebra/cubic-equation item Free
Discriminant calculator POST /algebra/discriminant item Free
Dot product calculator POST /algebra/dot-product item Free
2×2 eigenvalue calculator POST /algebra/eigenvalues-2x2 item Free
Exponential equation solver POST /algebra/exponential-equation item Free
Factor quadratic calculator POST /algebra/factor-quadratic item Free
Gaussian elimination solver POST /algebra/gaussian-elimination item Free
Linear equation solver POST /algebra/linear-equation item Free
Logarithm expand & condense POST /algebra/log-expand item Free
Logarithm calculator POST /algebra/logarithm item Free
Matrix addition & subtraction POST /algebra/matrix-add item Free
Matrix determinant calculator POST /algebra/matrix-determinant item Free
Matrix rank calculator POST /algebra/matrix-rank item Free
Matrix trace calculator POST /algebra/matrix-trace item Free
Matrix transpose calculator POST /algebra/matrix-transpose item Free
Partial fraction decomposition POST /algebra/partial-fractions item Free
Polynomial addition calculator POST /algebra/polynomial-add item Free
Polynomial multiplication calculator POST /algebra/polynomial-multiply item Free
Polynomial root finder POST /algebra/polynomial-roots item Free
Quadratic formula solver POST /algebra/quadratic-formula item Free
Rational root theorem POST /algebra/rational-root item Free
Remainder theorem calculator POST /algebra/remainder-theorem item Free
Synthetic division calculator POST /algebra/synthetic-division item Free
Solve a 2×2 system of linear equations POST /algebra/system-2x2 item Free
Vector magnitude calculator POST /algebra/vector-magnitude item Free
Vector projection calculator POST /algebra/vector-projection item Free
Vieta's formulas calculator POST /algebra/vieta-formulas item Free
Angular size calculator POST /astro/angular-size item Free
Apoapsis and periapsis calculator POST /astro/apoapsis-periapsis item Free
Apparent brightness calculator POST /astro/apparent-brightness item Free
Planet escape velocity calculator POST /astro/body-escape-velocity item Free
Distance modulus calculator POST /astro/distance-modulus item Free
Geostationary orbit calculator POST /astro/geostationary-orbit item Free
Gravitational force calculator POST /astro/gravitational-force item Free
Hubble law calculator POST /astro/hubble-distance item Free
Light-year converter POST /astro/light-year-distance item Free
Orbital energy calculator POST /astro/orbital-energy item Free
Orbital period calculator POST /astro/orbital-period item Free
Orbital velocity calculator POST /astro/orbital-velocity item Free
Stellar parallax calculator POST /astro/parallax-distance item Free
Redshift calculator POST /astro/redshift-velocity item Free
Roche limit calculator POST /astro/roche-limit item Free
Synodic period calculator POST /astro/synodic-period item Free
Rocket equation calculator POST /astro/tsiolkovsky-rocket item Free
Weight on other planets calculator POST /astro/weight-on-planet item Free
Actual yield calculator POST /chem/actual-yield-from-percent item Free
Activation energy calculator POST /chem/arrhenius-activation-energy item Free
Arrhenius pre-exponential factor calculator POST /chem/arrhenius-prefactor item Free
Atom economy calculator POST /chem/atom-economy item Free
Atoms to moles of compound calculator POST /chem/atoms-to-moles-of-compound item Free
Average atomic mass calculator POST /chem/average-atomic-mass item Free
Average kinetic energy of gas calculator POST /chem/average-kinetic-energy-gas item Free
Avogadro's law calculator POST /chem/avogadro-law item Free
Moles to atoms calculator POST /chem/avogadro-number item Free
Bomb calorimeter calculator POST /chem/bomb-calorimetry item Free
Bond energy reaction enthalpy calculator POST /chem/bond-enthalpy-reaction item Free
Boyle's law calculator POST /chem/boyle-final-pressure item Free
Boyle's law final volume calculator POST /chem/boyle-final-volume item Free
Buffer capacity calculator POST /chem/buffer-capacity item Free
Buffer pOH calculator POST /chem/buffer-poh item Free
C1V1 = C2V2 calculator POST /chem/c1v1-c2v2 item Free
Calorimeter constant calculator POST /chem/calorimeter-constant item Free
Calorimetry heat released calculator POST /chem/calorimetry-heat item Free
Catalyst rate enhancement calculator POST /chem/catalyst-rate-enhancement item Free
Cell potential from Gibbs free energy POST /chem/cell-potential-from-gibbs item Free
Charles law final temperature calculator POST /chem/charles-final-temperature item Free
Clausius–Clapeyron calculator POST /chem/clausius-clapeyron item Free
Colligative particle concentration calculator POST /chem/colligative-particle-count item Free
Collision theory rate calculator POST /chem/collision-frequency-factor item Free
Combined equilibrium constant calculator POST /chem/combined-equilibrium-constant item Free
Combined gas law final pressure calculator POST /chem/combined-gas-final-pressure item Free
Combustion analysis calculator POST /chem/combustion-analysis item Free
Common ion effect solubility calculator POST /chem/common-ion-solubility item Free
Gas compressibility factor calculator POST /chem/compressibility-factor item Free
Concentration after evaporation calculator POST /chem/concentration-after-evaporation item Free
Conjugate base to acid ratio calculator POST /chem/conjugate-ratio item Free
Faraday corrosion rate calculator POST /chem/corrosion-rate-faraday item Free
Van der Waals critical constants calculator POST /chem/critical-constants item Free
Partial pressures from mole amounts POST /chem/dalton-from-moles item Free
Gas mole fraction from partial pressure POST /chem/dalton-mole-fraction item Free
Degree of dissociation calculator POST /chem/degree-of-dissociation item Free
Density calculator POST /chem/density-mass-volume item Free
Dilution calculator POST /chem/dilution item Free
Dilution factor calculator POST /chem/dilution-factor-from-volumes item Free
pH after dilution calculator POST /chem/dilution-ph-strong-acid item Free
Dilution to target ppm calculator POST /chem/dilution-to-target-ppm item Free
Dilution water to add calculator POST /chem/dilution-water-added item Free
Ebullioscopic constant calculator POST /chem/ebullioscopic-constant item Free
Electrode potential vs pH calculator POST /chem/electrode-potential-ph item Free
Electrolysis time calculator POST /chem/electrolysis-time item Free
Electron configuration calculator POST /chem/electron-configuration item Free
Electrorefining efficiency calculator POST /chem/electrorefining-efficiency item Free
Empirical formula calculator POST /chem/empirical-formula item Free
Empirical formula from masses calculator POST /chem/empirical-from-masses item Free
Reaction heat for amount calculator POST /chem/enthalpy-amount-scaling item Free
Enthalpy scaled by coefficients calculator POST /chem/enthalpy-coefficient-scaling item Free
Heat of combustion per gram calculator POST /chem/enthalpy-combustion-per-gram item Free
Enthalpy of dilution calculator POST /chem/enthalpy-dilution item Free
Enthalpy from heats of formation calculator POST /chem/enthalpy-from-formation item Free
Enthalpy from internal energy calculator POST /chem/enthalpy-from-internal-energy item Free
Enthalpy of fusion calculator POST /chem/enthalpy-of-fusion-moles item Free
Enthalpy of vaporization calculator POST /chem/enthalpy-of-vaporization-moles item Free
Enthalpy of reaction calculator POST /chem/enthalpy-reaction item Free
Reaction entropy change calculator POST /chem/entropy-of-reaction item Free
Equilibrium constant calculator POST /chem/equilibrium-constant item Free
Equilibrium constant from cell potential POST /chem/equilibrium-constant-from-emf item Free
Equilibrium partial pressure from Kp calculator POST /chem/equilibrium-partial-pressure item Free
Equivalent weight calculator POST /chem/equivalent-weight item Free
Excess reactant remaining calculator POST /chem/excess-reactant-remaining item Free
Faraday electrolysis mass calculator POST /chem/faraday-mass-deposited item Free
Final temperature of mixture calculator POST /chem/final-temperature-two-substances item Free
First-order half-life calculator POST /chem/first-order-half-life item Free
Formal charge calculator POST /chem/formal-charge item Free
Fraction dissociated calculator POST /chem/fraction-dissociated-from-ka item Free
Freezing mixture temperature calculator POST /chem/freezing-mixture-temperature item Free
Freezing point depression calculator POST /chem/freezing-point-depression item Free
Gas collected over water calculator POST /chem/gas-collected-over-water item Free
Gas density at STP calculator POST /chem/gas-density-at-stp item Free
Ideal gas density calculator POST /chem/gas-density-ideal item Free
Gas moles calculator POST /chem/gas-moles-from-ptv item Free
Gas pressure from moles calculator POST /chem/gas-pressure-from-moles item Free
Electrolysis gas volume calculator POST /chem/gas-volume-electrolysis item Free
Gas volume from moles calculator POST /chem/gas-volume-from-moles item Free
Gay-Lussac final pressure calculator POST /chem/gay-lussac-final-pressure item Free
Gay-Lussac's law calculator POST /chem/gay-lussac-final-temperature item Free
Spontaneity crossover temperature POST /chem/gibbs-crossover-temperature item Free
Gibbs free energy calculator POST /chem/gibbs-free-energy item Free
Gibbs energy from equilibrium constant calculator POST /chem/gibbs-from-equilibrium item Free
Non-standard Gibbs free energy calculator POST /chem/gibbs-non-standard item Free
Reaction spontaneity calculator POST /chem/gibbs-spontaneity item Free
Graham's law calculator POST /chem/graham-effusion-rate-ratio item Free
Graham effusion time calculator POST /chem/graham-effusion-time item Free
Unknown molar mass from effusion calculator POST /chem/graham-unknown-molar-mass item Free
Grams to moles calculator POST /chem/grams-to-moles item Free
Grams to particles calculator POST /chem/grams-to-particles item Free
Half-life calculator POST /chem/half-life item Free
Number of half-lives calculator POST /chem/half-lives-elapsed item Free
Molar heat capacity ratio calculator POST /chem/heat-capacity-ratio item Free
Heat of neutralization calculator POST /chem/heat-of-neutralization item Free
Heat of solution calculator POST /chem/heat-of-solution item Free
Heat required to raise temperature calculator POST /chem/heat-to-raise-temperature item Free
Henderson–Hasselbalch calculator POST /chem/henderson-hasselbalch item Free
Henry's law constant calculator POST /chem/henrys-law-constant item Free
Henry's law gas solubility calculator POST /chem/henrys-law-solubility item Free
Hess's law calculator POST /chem/hess-law item Free
Hydrate formula calculator POST /chem/hydrate-formula item Free
Hydrogen ion from weak acid calculator POST /chem/hydrogen-ion-weak-acid item Free
Hydroxide concentration from pOH calculator POST /chem/hydroxide-from-poh item Free
Ideal gas law chemistry calculator POST /chem/ideal-gas item Free
Integrated rate law order checker POST /chem/integrated-rate-order item Free
Internal energy change calculator POST /chem/internal-energy-change item Free
Ionic strength calculator POST /chem/ionic-strength item Free
Isotope abundance calculator POST /chem/isotope-abundance item Free
Ka from pH calculator POST /chem/ka-from-ph item Free
Kb from pKb calculator POST /chem/kb-from-pkb item Free
Kc from degree of dissociation calculator POST /chem/kc-from-dissociation item Free
Kp from Kc calculator POST /chem/kp-kc-conversion item Free
Lattice energy calculator POST /chem/lattice-energy-born-lande item Free
Product mass from limiting reactant calculator POST /chem/limiting-reactant-product-mass item Free
Mass fraction calculator POST /chem/mass-fraction item Free
Mass fraction to mole fraction calculator POST /chem/mass-fraction-to-mole-fraction item Free
Pure mass from purity calculator POST /chem/mass-from-purity item Free
Mass of element in sample calculator POST /chem/mass-of-element-in-sample item Free
Mass of product from reactant calculator POST /chem/mass-of-product-from-reactant item Free
Mass percent calculator POST /chem/mass-percent item Free
Mass percent to mole fraction calculator POST /chem/mass-percent-to-mole-fraction item Free
Mass to gas volume stoichiometry calculator POST /chem/mass-to-volume-gas-stoich item Free
Mixing three solutions calculator POST /chem/mixing-three-solutions item Free
Mixing two solutions calculator POST /chem/mixing-two-solutions item Free
Molality calculator POST /chem/molality item Free
Molality calculator POST /chem/molality-from-moles-mass item Free
Molality to molarity calculator POST /chem/molality-to-molarity item Free
Molar mass calculator POST /chem/molar-mass item Free
Molar mass from freezing point depression calculator POST /chem/molar-mass-from-fp-depression item Free
Molar mass from osmotic pressure POST /chem/molar-mass-from-osmotic-pressure item Free
Molar solubility from Ksp calculator POST /chem/molar-solubility-from-ksp item Free
Molar volume at STP calculator POST /chem/molar-volume-at-stp item Free
Molarity to mass percent calculator POST /chem/molarity-to-mass-percent item Free
Molarity to normality calculator POST /chem/molarity-to-normality item Free
Mole fraction calculator POST /chem/mole-fraction item Free
Mole fraction to molality calculator POST /chem/mole-fraction-to-molality item Free
Mole fraction to molarity calculator POST /chem/mole-fraction-to-molarity item Free
Gas volume ratio calculator POST /chem/mole-ratio-gas-volumes item Free
Mole to mole conversion calculator POST /chem/mole-to-mole-conversion item Free
Molecular formula calculator POST /chem/molecular-formula item Free
Molecular formula from empirical calculator POST /chem/molecular-from-empirical item Free
Moles to grams calculator POST /chem/moles-from-mass item Free
Moles from molarity and volume calculator POST /chem/moles-from-molarity-volume item Free
Most probable molecular speed calculator POST /chem/most-probable-speed item Free
Nernst equation calculator POST /chem/nernst-equation item Free
Neutralization moles calculator POST /chem/neutralization-moles item Free
Normality calculator POST /chem/normality item Free
Normality to molarity calculator POST /chem/normality-to-molarity item Free
Number of atoms in sample calculator POST /chem/number-of-atoms-in-sample item Free
Osmolarity from osmotic pressure calculator POST /chem/osmolarity-from-osmotic-pressure item Free
Osmotic pressure calculator POST /chem/osmotic-pressure item Free
Osmotic pressure from molarity calculator POST /chem/osmotic-pressure-from-molarity item Free
Osmotic pressure difference calculator POST /chem/osmotic-pressure-two-solutions item Free
Partial pressure at new temperature calculator POST /chem/partial-pressure-change-temperature item Free
Partial pressure from mole fraction calculator POST /chem/partial-pressure-from-mole-fraction item Free
Particles to grams calculator POST /chem/particles-to-grams item Free
Parts per thousand calculator POST /chem/parts-per-thousand item Free
Element percent by mass calculator POST /chem/percent-composition-element item Free
Percent dissociation calculator POST /chem/percent-dissociation-equilibrium item Free
Percent ionization of acid calculator POST /chem/percent-ionization item Free
Percent purity calculator POST /chem/percent-purity item Free
Percent solution prep calculator POST /chem/percent-solution-prep item Free
Mass percent to molarity calculator POST /chem/percent-w-w-to-molarity item Free
Percent yield calculator POST /chem/percent-yield-from-masses item Free
pH calculator POST /chem/ph-from-concentration item Free
pH from pOH calculator POST /chem/ph-from-poh item Free
pH to pOH calculator POST /chem/ph-poh-convert item Free
Weak acid pH calculator POST /chem/ph-weak-acid item Free
Weak base pH calculator POST /chem/ph-weak-base item Free
pKb from Kb calculator POST /chem/pkb-from-kb item Free
pOH calculator POST /chem/poh item Free
pOH calculator POST /chem/poh-from-hydroxide item Free
PPB to molarity calculator POST /chem/ppb-to-molarity item Free
PPM calculator POST /chem/ppm-concentration item Free
PPM to mg/L calculator POST /chem/ppm-to-mg-per-liter item Free
PPM to molarity calculator POST /chem/ppm-to-molarity item Free
PPM to PPB converter POST /chem/ppm-to-ppb item Free
Pseudo-first-order rate constant calculator POST /chem/pseudo-first-order item Free
Radioactive decay calculator POST /chem/radioactive-decay item Free
Raoult's law vapor pressure calculator POST /chem/raoult-law-vapor-pressure item Free
Raoult's law two-component calculator POST /chem/raoult-two-component item Free
Rate constant at new temperature calculator POST /chem/rate-constant-new-temperature item Free
Rate from stoichiometry calculator POST /chem/rate-from-stoichiometry item Free
Rate law calculator POST /chem/rate-law item Free
Reactant mass needed calculator POST /chem/reactant-mass-for-product item Free
Reaction quotient Q calculator POST /chem/reaction-quotient item Free
Reaction rate calculator POST /chem/reaction-rate item Free
Reduced properties calculator POST /chem/reduced-state-variables item Free
Relative vapor pressure lowering calculator POST /chem/relative-vapor-lowering item Free
Reverse osmosis net driving pressure POST /chem/reverse-osmosis-pressure item Free
Root-mean-square speed calculator POST /chem/rms-speed item Free
Second-order concentration calculator POST /chem/second-order-concentration item Free
Second-order half-life calculator POST /chem/second-order-half-life item Free
Serial dilution calculator POST /chem/serial-dilution item Free
First-order shelf-life calculator POST /chem/shelf-life-first-order item Free
Solution density from mass percent POST /chem/solution-density-from-percent item Free
Solution freezing point calculator POST /chem/solution-freezing-point item Free
Standard cell potential calculator POST /chem/standard-cell-potential item Free
Stoichiometric air-fuel ratio calculator POST /chem/stoichiometric-air-fuel-ratio item Free
Mole ratio calculator POST /chem/stoichiometry-mole-ratio item Free
Theoretical yield calculator POST /chem/theoretical-yield item Free
Titration equivalence point volume calculator POST /chem/titration-equivalence-volume item Free
Titration pH at equivalence calculator POST /chem/titration-ph-at-equivalence item Free
Van der Waals molar volume calculator POST /chem/van-der-waals-volume item Free
Van't Hoff factor calculator POST /chem/vant-hoff-factor item Free
Vapor phase composition calculator POST /chem/vapor-phase-composition item Free
Vapor pressure lowering calculator POST /chem/vapor-pressure-lowering item Free
Volume for target molarity calculator POST /chem/volume-for-target-molarity item Free
Volume percent to molarity calculator POST /chem/volume-percent-to-molarity item Free
Gas volume to moles calculator POST /chem/volume-to-moles-gas item Free
Weight/volume percent calculator POST /chem/weight-volume-percent item Free
Weight-volume % to molarity calculator POST /chem/weight-volume-to-molarity item Free
Precipitation ion product calculator POST /chem/will-precipitate item Free
Analogous color generator POST /color/analogous item Free
CMYK to RGB converter POST /color/cmyk-rgb item Free
Complementary color finder POST /color/complementary item Free
Color to grayscale converter POST /color/grayscale item Free
Hex to HSL converter POST /color/hex-hsl item Free
Hex to color name POST /color/hex-name item Free
Hex to RGB converter POST /color/hex-rgb item Free
HSL to HSV converter POST /color/hsl-hsv item Free
HSL to RGB converter POST /color/hsl-rgb item Free
HSV to RGB converter POST /color/hsv-rgb item Free
Color lightener POST /color/lighten item Free
Color mixer POST /color/mix item Free
CSS color name to hex POST /color/name-hex item Free
RGB to HSL converter POST /color/rgb-hsl item Free
RGB to decimal integer POST /color/rgb-int item Free
Color shades generator POST /color/shades item Free
Triadic color scheme generator POST /color/triadic item Free
Combinations calculator POST /combo/combinations item Free
Integer compositions calculator POST /combo/compositions item Free
Derangement calculator POST /combo/derangement item Free
Multinomial coefficient calculator POST /combo/multinomial item Free
Integer partition calculator POST /combo/partition-count item Free
Pascal's triangle generator POST /combo/pascal-triangle item Free
Permutations calculator POST /combo/permutations item Free
Permutations with repetition POST /combo/permutations-with-repetition item Free
Round-robin matches calculator POST /combo/round-robin item Free
Stirling numbers of the second kind POST /combo/stirling-second item Free
Acres to square meters converter POST /conv/acres-to-square-meters item Free
Physical action converter POST /conv/action-physics item Free
Water alkalinity converter POST /conv/alkalinity item Free
Angular momentum converter POST /conv/angular-momentum item Free
API gravity converter POST /conv/api-gravity item Free
ATM to PSI converter POST /conv/atm-to-psi item Free
Beaufort scale converter POST /conv/beaufort-wind item Free
Belt size converter POST /conv/belt-size item Free
Binary prefix converter POST /conv/binary-prefix item Free
BTU to kWh converter POST /conv/btu-to-kwh item Free
Calories to joules converter POST /conv/calories-to-joules item Free
Calorific value converter POST /conv/calorific-value item Free
CM to inches converter POST /conv/cm-to-inches item Free
Color depth converter POST /conv/color-depth item Free
Cubic meters to cubic feet converter POST /conv/cubic-meters-to-cubic-feet item Free
Degrees to gradians converter POST /conv/degrees-to-gradians item Free
Didot point converter POST /conv/didot-point item Free
Electric flux converter POST /conv/electric-flux item Free
Electron mobility converter POST /conv/electron-mobility item Free
Entropy converter POST /conv/entropy item Free
Equivalent weight converter POST /conv/equivalent-weight item Free
Fabric weight converter POST /conv/fabric-weight item Free
Fahrenheit to Rankine converter POST /conv/fahrenheit-to-rankine item Free
Film speed converter POST /conv/film-speed item Free
Foot-pounds to newton-meters converter POST /conv/foot-pounds-to-newton-meters item Free
Gallons to cups converter POST /conv/gallons-to-cups item Free
Gallons to quarts converter POST /conv/gallons-to-quarts item Free
Glove size converter POST /conv/glove-size item Free
Hardness scale converter POST /conv/hardness item Free
Hectares to acres converter POST /conv/hectares-to-acres item Free
Humidity ratio converter POST /conv/humidity-ratio item Free
Hydraulic conductivity converter POST /conv/hydraulic-conductivity item Free
Imperial gallons to US gallons converter POST /conv/imperial-gallons-to-us-gallons item Free
Inches to cm converter POST /conv/inches-to-cm item Free
Jerk converter POST /conv/jerk item Free
Joules to foot-pounds converter POST /conv/joules-to-foot-pounds item Free
kg/m³ to lb/ft³ converter POST /conv/kg-per-m3-to-lb-per-ft3 item Free
KG to stone converter POST /conv/kg-to-stone item Free
KM to miles converter POST /conv/km-to-miles item Free
Knots to km/h converter POST /conv/knots-to-kmh item Free
kW to hp converter POST /conv/kw-to-hp item Free
Lbs to ounces converter POST /conv/lbs-to-ounces item Free
Vacuum leak rate converter POST /conv/leak-rate item Free
Linear mass density converter POST /conv/linear-density item Free
Linear energy transfer converter POST /conv/linear-energy-transfer item Free
Nominal lumber size converter POST /conv/lumber-size item Free
Luminous energy converter POST /conv/luminous-energy item Free
Luminous exposure converter POST /conv/luminous-exposure item Free
Magnetic moment converter POST /conv/magnetic-moment item Free
Magnetic susceptibility converter POST /conv/magnetic-susceptibility item Free
Magnetomotive force converter POST /conv/magnetomotive-force item Free
Mass diffusivity converter POST /conv/mass-diffusivity item Free
Mass flux converter POST /conv/mass-flux item Free
Meters per second to mph POST /conv/meters-per-second-to-mph item Free
Meters to inches converter POST /conv/meters-to-inches item Free
Meters to yards converter POST /conv/meters-to-yards item Free
Metric tons to US tons converter POST /conv/metric-tons-to-us-tons item Free
Miles to yards converter POST /conv/miles-to-yards item Free
ML to teaspoons converter POST /conv/ml-to-teaspoons item Free
Molar conductivity converter POST /conv/molar-conductivity item Free
Molar entropy converter POST /conv/molar-entropy item Free
Molar flow rate converter POST /conv/molar-flow-rate item Free
Molar volume converter POST /conv/molar-volume item Free
Nuclear cross section converter POST /conv/nuclear-cross-section item Free
Numerical aperture converter POST /conv/numerical-aperture item Free
Parsecs to light-years converter POST /conv/parsecs-to-light-years item Free
Permeability converter POST /conv/permeability-darcy item Free
Permittivity converter POST /conv/permittivity item Free
Photon energy converter POST /conv/photon-energy item Free
Pressure unit converter POST /conv/pressure item Free
Pressure altitude converter POST /conv/pressure-altitude item Free
Pressure head converter POST /conv/pressure-head item Free
Rainfall rate converter POST /conv/rainfall-rate item Free
Audio sample rate converter POST /conv/sample-rate item Free
Screw gauge size converter POST /conv/screw-size item Free
Section modulus converter POST /conv/section-modulus item Free
Sheet metal gauge converter POST /conv/sheet-metal-gauge item Free
Shutter speed converter POST /conv/shutter-speed item Free
Sieve mesh size converter POST /conv/sieve-mesh item Free
Solar mass, radius & luminosity converter POST /conv/solar-units item Free
Sound absorption converter POST /conv/sound-absorption item Free
Sound power converter POST /conv/sound-power item Free
Specific impulse converter POST /conv/specific-impulse item Free
Square km to square miles POST /conv/square-km-to-square-miles item Free
Spring stiffness converter POST /conv/stiffness item Free
Guitar string gauge converter POST /conv/string-gauge item Free
Surface charge density converter POST /conv/surface-charge-density item Free
Thermal conductance converter POST /conv/thermal-conductance item Free
Thermal expansion coefficient converter POST /conv/thermal-expansion-coefficient item Free
Thread count converter POST /conv/thread-count item Free
Thread pitch converter POST /conv/thread-pitch item Free
Torr to PSI converter POST /conv/torr-to-psi item Free
Turbidity converter POST /conv/turbidity item Free
Vacuum pressure converter POST /conv/vacuum item Free
Water conductivity & TDS converter POST /conv/water-conductivity item Free
Cups to grams converter POST /cook/cups-grams item Free
Fluid ounces to ml converter POST /cook/fl-oz-ml item Free
Flour cups to grams converter POST /cook/flour item Free
Gas mark converter POST /cook/gas-mark item Free
Grams to cups converter POST /cook/grams-cups item Free
mL to cups converter POST /cook/ml-cups item Free
Oven temperature converter POST /cook/oven-temp item Free
Cooking ounces to grams converter POST /cook/oz-grams item Free
Quarts to liters converter POST /cook/quarts-liters item Free
Recipe scaler POST /cook/recipe-scale item Free
Rice cups to grams converter POST /cook/rice item Free
Sugar cups to grams converter POST /cook/sugar item Free
Tablespoons to ml converter POST /cook/tbsp-ml item Free
US to metric cooking converter POST /cook/us-metric item Free
Yeast conversion converter POST /cook/yeast item Free
Add days to a date POST /date/add-days item Free
Add years to a date POST /date/add-years item Free
Birth flower by month POST /date/birth-flower item Free
Chinese zodiac element calculator POST /date/chinese-zodiac-element item Free
Countdown between two dates POST /date/countdown-between item Free
Day of year to date converter POST /date/date-from-dayofyear item Free
Day of the week calculator POST /date/day-of-week item Free
Day of the year calculator POST /date/day-of-year item Free
Days in a month calculator POST /date/days-in-month item Free
Days left in the year POST /date/days-remaining-year item Free
Decade and century finder POST /date/decade-century item Free
Dominical letter calculator POST /date/dominical-letter item Free
Doomsday rule calculator POST /date/doomsday-weekday item Free
Orthodox Easter date calculator POST /date/easter-orthodox item Free
Friday the 13th finder POST /date/friday-13th item Free
Humanize duration POST /date/humanize-duration item Free
Leap year checker POST /date/is-leap-year item Free
ISO weekday number POST /date/iso-weekday-number item Free
Julian Day Number calculator POST /date/julian-day-number item Free
Last weekday of the month POST /date/last-weekday-of-month item Free
Leap years in a range POST /date/leap-years-between item Free
Printable month calendar generator POST /date/month-calendar item Free
Months between two dates POST /date/months-between item Free
Nth weekday of the month POST /date/nth-weekday-of-month item Free
ISO ordinal date converter POST /date/ordinal-date item Free
Previous weekday occurrence POST /date/previous-weekday item Free
Calendar quarter finder POST /date/quarter-of-year item Free
Quarter start and end dates POST /date/quarter-start-end item Free
Recurring dates generator POST /date/recurring-dates item Free
Season of the year calculator POST /date/season item Free
US week number calculator POST /date/us-week-number item Free
Week start and end dates POST /date/week-start-end item Free
Weekday count in a year POST /date/weekday-frequency item Free
Weekend days between two dates POST /date/weekend-count item Free
Weeks between two dates POST /date/weeks-between item Free
Year progress percentage POST /date/year-progress item Free
Zeller's congruence calculator POST /date/zeller-weekday item Free
Zodiac element calculator POST /date/zodiac-element item Free
Western zodiac sign calculator POST /date/zodiac-sign item Free
AWG ampacity calculator POST /elec/awg-ampacity item Free
AWG wire gauge calculator POST /elec/awg-wire item Free
Battery life calculator POST /elec/battery-life item Free
Capacitive reactance calculator POST /elec/capacitive-reactance item Free
Capacitor charge calculator POST /elec/capacitor-charge item Free
Capacitor charging calculator POST /elec/capacitor-charge-time item Free
Parallel capacitance calculator POST /elec/capacitors-parallel item Free
Series capacitance calculator POST /elec/capacitors-series item Free
Electric charge calculator POST /elec/charge-current-time item Free
Coulomb's law calculator POST /elec/coulombs-law item Free
Current divider calculator POST /elec/current-divider item Free
Electric field force calculator POST /elec/electric-field-force item Free
Electric field calculator POST /elec/electric-field-point item Free
Electricity cost calculator POST /elec/electrical-energy-cost item Free
Frequency period converter POST /elec/frequency-period item Free
Inductive reactance calculator POST /elec/inductive-reactance item Free
LC resonant frequency calculator POST /elec/lc-resonant-frequency item Free
LED resistor calculator POST /elec/led-resistor item Free
Magnetic field of a straight wire calculator POST /elec/magnetic-field-wire item Free
Magnetic force calculator POST /elec/magnetic-force-charge item Free
Force on a current-carrying wire calculator POST /elec/magnetic-force-wire item Free
555 timer calculator POST /elec/ne555-astable item Free
555 timer monostable calculator POST /elec/ne555-monostable item Free
Non-inverting amplifier calculator POST /elec/op-amp-noninverting item Free
Parallel-plate capacitor calculator POST /elec/parallel-plate-capacitance item Free
Power gain dB calculator POST /elec/power-gain-db item Free
PWM duty cycle calculator POST /elec/pwm-duty-cycle item Free
RC filter cutoff calculator POST /elec/rc-filter-cutoff item Free
RC time constant calculator POST /elec/rc-time-constant item Free
Wire resistance calculator POST /elec/resistivity item Free
Series resistance calculator POST /elec/resistors-series item Free
RL filter cutoff calculator POST /elec/rl-filter-cutoff item Free
RL time constant calculator POST /elec/rl-time-constant item Free
Slew rate from full-power bandwidth POST /elec/slew-rate-bandwidth item Free
Johnson noise calculator POST /elec/thermal-noise item Free
Voltage drop calculator POST /elec/voltage-drop-wire item Free
Voltage gain dB calculator POST /elec/voltage-gain-db item Free
Watts to dBm calculator POST /elec/watts-to-dbm item Free
Watts, volts & amps calculator POST /elec/watts-volts-amps item Free
Frequency to wavelength calculator POST /elec/wavelength-frequency-rf item Free
Wheatstone bridge calculator POST /elec/wheatstone-bridge item Free
Zener diode resistor calculator POST /elec/zener-resistor item Free
Affine cipher POST /enc/affine item Free
ASCII code lookup POST /enc/ascii-lookup item Free
Atbash cipher POST /enc/atbash item Free
Autokey cipher POST /enc/autokey item Free
Base16 RFC 4648 encoder & decoder POST /enc/base16-rfc4648 item Free
Base32 encoder & decoder POST /enc/base32 item Free
Base58 encoder & decoder POST /enc/base58 item Free
Flickr Base58 encoder & decoder POST /enc/base58-flickr item Free
Text to Base64 POST /enc/base64 item Free
Ascii85 / Base85 encoder POST /enc/base85 item Free
Beaufort cipher POST /enc/beaufort item Free
Bifid cipher POST /enc/bifid item Free
Text to binary converter POST /enc/binary-text item Free
Braille translator POST /enc/braille item Free
Caesar cipher POST /enc/caesar item Free
Gronsfeld cipher POST /enc/gronsfeld item Free
Text to hex converter POST /enc/hex-text item Free
Keyboard shift cipher POST /enc/keyboard-shift item Free
Leetspeak translator POST /enc/leetspeak item Free
Multiplicative cipher POST /enc/multiplicative item Free
NATO phonetic alphabet POST /enc/nato item Free
Nihilist cipher POST /enc/nihilist item Free
Text to octal converter POST /enc/octal-text item Free
Playfair cipher POST /enc/playfair item Free
Polybius square cipher POST /enc/polybius item Free
Punycode converter POST /enc/punycode item Free
Rail fence cipher POST /enc/rail-fence item Free
ROT13 encoder POST /enc/rot13 item Free
ROT18 cipher POST /enc/rot18 item Free
ROT5 digit cipher POST /enc/rot5 item Free
Tap code translator POST /enc/tap-code item Free
Trifid cipher POST /enc/trifid item Free
Unicode code point converter POST /enc/unicode-codepoint item Free
URL percent encoder & decoder POST /enc/url item Free
UTF-8 byte encoder POST /enc/utf8-bytes item Free
XOR cipher POST /enc/xor item Free
Base62 number converter POST /fmt/base62 item Free
Binary to hex converter POST /fmt/binary-hex item Free
Chinese number converter POST /fmt/chinese-numerals item Free
Number to currency words POST /fmt/currency-words item Free
Decimal to binary converter POST /fmt/decimal-binary item Free
Decimal to fraction converter POST /fmt/decimal-fraction item Free
Decimal to octal converter POST /fmt/decimal-octal item Free
Decimal to percent converter POST /fmt/decimal-percent item Free
Duodecimal converter POST /fmt/duodecimal item Free
Fraction to decimal converter POST /fmt/fraction-decimal item Free
Gray code converter POST /fmt/gray-code item Free
Hex to binary converter POST /fmt/hex-binary item Free
Hex to decimal converter POST /fmt/hex-decimal item Free
Float to IEEE-754 converter POST /fmt/ieee754 item Free
Spell a number in English POST /fmt/number-to-words-en item Free
Spell a number in Spanish POST /fmt/number-to-words-es item Free
Percent to decimal converter POST /fmt/percent-decimal item Free
Large Roman numerals converter POST /fmt/roman-large item Free
Number rounding tool POST /fmt/rounding item Free
Scientific notation converter POST /fmt/scientific-notation item Free
Ordinal words converter POST /fmt/spell-ordinal item Free
Thai numeral converter POST /fmt/thai-numerals item Free
Add thousands separators POST /fmt/thousands-separator item Free
Two's complement converter POST /fmt/twos-complement item Free
Antipode coordinates calculator POST /geo/antipode item Free
Bearing to compass direction POST /geo/bearing-to-compass item Free
Point-radius bounding box POST /geo/bounding-box item Free
Cross-track distance calculator POST /geo/cross-track-distance item Free
Decimal degrees to DMS converter POST /geo/decimal-to-dms item Free
Length of a degree of latitude POST /geo/degree-length-latitude item Free
Length of a degree of longitude POST /geo/degree-length-longitude item Free
Destination point calculator POST /geo/destination-point item Free
DMS to decimal degrees converter POST /geo/dms-to-decimal item Free
Equirectangular distance POST /geo/equirectangular-distance item Free
Great-circle interpolation POST /geo/geodesic-interpolate item Free
Geohash bounding box POST /geo/geohash-bbox item Free
Geohash neighbors finder POST /geo/geohash-neighbors item Free
Web map scale calculator POST /geo/map-scale item Free
Web Mercator meters per pixel POST /geo/meters-per-pixel item Free
Lat lon to MGRS POST /geo/mgrs-from-latlon item Free
MGRS to lat/lon POST /geo/mgrs-to-latlon item Free
Point in polygon checker POST /geo/point-in-polygon item Free
Polygon centroid calculator POST /geo/polygon-centroid item Free
Bing Maps quadkey decoder POST /geo/quadkey-decode item Free
Tile to Bing Maps quadkey POST /geo/quadkey-encode item Free
Rhumb line bearing calculator POST /geo/rhumb-bearing item Free
Rhumb line destination point POST /geo/rhumb-destination item Free
Lat/lon to map tile POST /geo/tile-from-latlon item Free
Lat lon to UTM converter POST /geo/utm-from-latlon item Free
Vincenty distance calculator POST /geo/vincenty-distance item Free
Web Mercator unproject POST /geo/web-mercator-unproject item Free
Arc length calculator POST /geom/arc-length item Free
Barrel volume calculator POST /geom/barrel item Free
Circle equation calculator POST /geom/circle-equation item Free
Circle–line intersection POST /geom/circle-line-intersection item Free
Cube calculator POST /geom/cube item Free
Cylinder volume calculator POST /geom/cylinder item Free
Distance between two points POST /geom/distance-2d item Free
Ellipsoid volume calculator POST /geom/ellipsoid item Free
Conical frustum calculator POST /geom/frustum-cone item Free
Pyramid frustum calculator POST /geom/frustum-pyramid item Free
Hemisphere calculator POST /geom/hemisphere item Free
Heron's formula calculator POST /geom/heron-area item Free
Hexagonal pyramid calculator POST /geom/hexagonal-pyramid item Free
Hyperbola calculator POST /geom/hyperbola item Free
Icosahedron calculator POST /geom/icosahedron item Free
Line equation from two points POST /geom/line-equation item Free
Midpoint calculator POST /geom/midpoint item Free
Oblique prism volume POST /geom/oblique-prism item Free
Octahedron calculator POST /geom/octahedron item Free
Parabola calculator POST /geom/parabola item Free
Paraboloid volume calculator POST /geom/paraboloid item Free
Parallel or perpendicular lines POST /geom/parallel-perpendicular item Free
Pentagonal prism calculator POST /geom/pentagonal-prism item Free
Point to line distance POST /geom/point-line-distance item Free
Polygon diagonals calculator POST /geom/polygon-diagonals item Free
Polygon perimeter from coordinates POST /geom/polygon-perimeter item Free
Quadrilateral area calculator POST /geom/quadrilateral-area item Free
Rectangular prism calculator POST /geom/rectangular-prism item Free
Regular polygon calculator POST /geom/regular-polygon item Free
Right triangle calculator POST /geom/right-triangle item Free
Section formula calculator POST /geom/section-formula item Free
Circular sector area and perimeter POST /geom/sector-area item Free
Circular segment area POST /geom/segment-area item Free
Sphere volume calculator POST /geom/sphere-volume item Free
Spherical cap calculator POST /geom/spherical-cap item Free
Spherical sector calculator POST /geom/spherical-sector item Free
Tank volume calculator POST /geom/tank-volume item Free
Tetrahedron volume calculator POST /geom/tetrahedron item Free
Trapezoid area calculator POST /geom/trapezoid item Free
30-60-90 triangle calculator POST /geom/triangle-30-60-90 item Free
AAS triangle calculator POST /geom/triangle-aas item Free
Triangle area from coordinates POST /geom/triangle-area-coordinates item Free
ASA triangle calculator POST /geom/triangle-asa item Free
Triangle centroid calculator POST /geom/triangle-centroid item Free
Triangle orthocenter from coordinates POST /geom/triangle-orthocenter item Free
SAS triangle calculator POST /geom/triangle-sas item Free
Triangular prism calculator POST /geom/triangular-prism item Free
Two circles intersection POST /geom/two-circles-intersection item Free
Wedge volume calculator POST /geom/wedge item Free
Anion gap calculator POST /health/anion-gap item Free
Blood pressure category calculator POST /health/blood-pressure-category item Free
BMI Prime calculator POST /health/bmi-prime item Free
Harris-Benedict BMR calculator POST /health/bmr-harris-benedict item Free
Katch-McArdle BMR calculator POST /health/bmr-katch-mcardle item Free
Total body water calculator POST /health/body-water-percentage item Free
Body surface area Du Bois calculator POST /health/bsa-dubois item Free
Body surface area calculator POST /health/bsa-mosteller item Free
Calories burned calculator POST /health/calories-burned item Free
Child and teen BMI calculator POST /health/child-bmi item Free
Corrected calcium calculator POST /health/corrected-calcium item Free
Cycling calorie calculator POST /health/cycling-calories item Free
Fat-free mass index calculator POST /health/fat-free-mass-index item Free
Daily fiber intake calculator POST /health/fiber-intake item Free
Mean arterial pressure calculator POST /health/mean-arterial-pressure item Free
Pack years calculator POST /health/pack-years item Free
Pregnancy weight gain calculator POST /health/pregnancy-weight-gain item Free
Daily protein intake calculator POST /health/protein-intake item Free
Riegel race time predictor POST /health/race-time-predictor item Free
Running calorie calculator POST /health/running-calories item Free
Running pace calculator POST /health/running-pace item Free
Steps to distance calculator POST /health/steps-to-distance item Free
Swimming pace calculator POST /health/swim-pace item Free
Target heart rate Karvonen calculator POST /health/target-hr-karvonen item Free
VO2 max Cooper test calculator POST /health/vo2max-cooper item Free
Waist-to-height ratio calculator POST /health/waist-height-ratio item Free
Waist-to-hip ratio calculator POST /health/waist-hip-ratio item Free
BPM to milliseconds calculator POST /hobby/bpm-to-ms item Free
Cents between frequencies calculator POST /hobby/cents-interval item Free
Chord note calculator POST /hobby/chord-notes item Free
Crop factor calculator POST /hobby/crop-factor item Free
Depth of field calculator POST /hobby/depth-of-field item Free
Equivalent exposure calculator POST /hobby/equivalent-exposure item Free
Exposure value calculator POST /hobby/exposure-value item Free
Camera field of view calculator POST /hobby/field-of-view item Free
Golden ratio font size calculator POST /hobby/golden-ratio-type item Free
Knitting gauge calculator POST /hobby/knitting-gauge item Free
Modular type scale generator POST /hobby/modular-scale item Free
Musical interval calculator POST /hobby/musical-interval item Free
Note frequency calculator POST /hobby/note-frequency item Free
NPF rule calculator POST /hobby/npf-rule item Free
Poker outs and odds calculator POST /hobby/poker-odds item Free
Print size & DPI calculator POST /hobby/print-dpi item Free
Reading time estimator POST /hobby/reading-time item Free
Epoxy resin mix calculator POST /hobby/resin-mix item Free
Musical scale generator POST /hobby/scale-notes item Free
Music transposition calculator POST /hobby/transpose item Free
Yarn weight substitution calculator POST /hobby/yarn-substitution item Free
Air conditioner BTU calculator POST /home/ac-btu item Free
Concrete block calculator POST /home/blocks item Free
Carpet calculator POST /home/carpet item Free
Concrete column calculator POST /home/concrete-column item Free
Concrete footing calculator POST /home/concrete-footing item Free
Concrete slab calculator POST /home/concrete-slab item Free
Crown molding calculator POST /home/crown-molding item Free
Deck board calculator POST /home/deck-boards item Free
Fence post calculator POST /home/fence-posts item Free
Lawn fertilizer calculator POST /home/fertilizer item Free
Floor tile calculator POST /home/floor-tiles item Free
Gravel calculator POST /home/gravel item Free
Heater BTU calculator POST /home/heater-btu item Free
Insulation R-value calculator POST /home/insulation item Free
Laminate flooring calculator POST /home/laminate-flooring item Free
Mortar calculator POST /home/mortar item Free
Paver calculator POST /home/pavers item Free
Pool chlorine dosage calculator POST /home/pool-chlorine item Free
Swimming pool volume calculator POST /home/pool-volume item Free
Roof pitch calculator POST /home/roof-pitch item Free
Roofing shingles calculator POST /home/roof-shingles item Free
Sand calculator POST /home/sand item Free
Staircase step calculator POST /home/staircase-steps item Free
Topsoil calculator POST /home/topsoil item Free
Wall stud calculator POST /home/wall-studs item Free
Wall tile calculator POST /home/wall-tiles item Free
Wallpaper rolls calculator POST /home/wallpaper-rolls item Free
Water tank volume calculator POST /home/water-tank-volume item Free
Buy one get one discount calculator POST /life/bogo-discount item Free
Recipe cost per serving calculator POST /life/cost-per-serving item Free
Shared expense splitter POST /life/expense-split item Free
Quit a habit savings calculator POST /life/habit-savings item Free
Markup to margin converter POST /life/markup-margin item Free
Overtime pay calculator POST /life/overtime-pay item Free
Price per 100g calculator POST /life/price-per-100g item Free
Rule of 114 and 144 calculator POST /life/rule-of-114 item Free
Salary to hourly converter POST /life/salary-to-hourly item Free
Sales tax calculator POST /life/sales-tax item Free
Savings goal time calculator POST /life/savings-goal-time item Free
Subscription annual cost calculator POST /life/subscription-annual item Free
Tip and split calculator POST /life/tip-split item Free
Unit price comparison calculator POST /life/unit-price item Free
Arithmetic sequence calculator POST /math/arithmetic-sequence item Free
Arithmetic series sum calculator POST /math/arithmetic-series-sum item Free
Catalan number calculator POST /math/catalan-number item Free
Double factorial calculator POST /math/double-factorial item Free
Factorial calculator POST /math/factorial-calculator item Free
Fibonacci number calculator POST /math/fibonacci item Free
Sum of Fibonacci series POST /math/fibonacci-sum item Free
Infinite geometric series sum POST /math/geometric-series-sum item Free
Hexagonal number calculator POST /math/hexagonal-number item Free
Look-and-say sequence POST /math/look-and-say item Free
Padovan sequence calculator POST /math/padovan-number item Free
Pentagonal number calculator POST /math/pentagonal-number item Free
Polygonal number calculator POST /math/polygonal-number item Free
Primorial calculator POST /math/primorial item Free
Square pyramidal number POST /math/pyramidal-number item Free
Stern diatomic / Stern-Brocot sequence POST /math/stern-brocot item Free
Sum of first n even numbers POST /math/sum-of-even item Free
Sum of first n odd numbers POST /math/sum-of-odd item Free
Sum of first n squares POST /math/sum-of-squares item Free
Sylvester sequence calculator POST /math/sylvester-sequence item Free
Angular velocity calculator POST /mech/angular-velocity item Free
Atwood machine calculator POST /mech/atwood-machine item Free
Average velocity calculator POST /mech/average-velocity item Free
Banked curve calculator POST /mech/banked-curve item Free
Centripetal acceleration calculator POST /mech/centripetal-acceleration item Free
Centripetal force calculator POST /mech/centripetal-force item Free
Coefficient of friction calculator POST /mech/coefficient-of-friction item Free
Elastic collision calculator POST /mech/elastic-collision item Free
Force calculator POST /mech/force-mass-accel item Free
Free fall calculator POST /mech/free-fall item Free
Hooke's law calculator POST /mech/hookes-law item Free
Horizontal projectile motion calculator POST /mech/horizontal-projectile item Free
Impulse calculator POST /mech/impulse item Free
Inclined plane calculator POST /mech/inclined-plane item Free
Kinematics distance calculator POST /mech/kinematics-distance item Free
Final velocity calculator POST /mech/kinematics-velocity item Free
Kinetic energy calculator POST /mech/kinetic-energy item Free
Moment of inertia calculator POST /mech/moment-of-inertia item Free
Momentum calculator POST /mech/momentum item Free
Newton's second law calculator POST /mech/newton-second-law item Free
Pendulum length calculator POST /mech/pendulum-length item Free
Power calculator POST /mech/power item Free
Power from force and velocity POST /mech/power-force-velocity item Free
Projectile from height calculator POST /mech/projectile-launch-from-height item Free
Pulley mechanical advantage calculator POST /mech/pulley-mechanical-advantage item Free
Rotational kinetic energy calculator POST /mech/rotational-kinetic-energy item Free
Spring constant calculator POST /mech/spring-constant item Free
Terminal velocity calculator POST /mech/terminal-velocity item Free
Torque calculator POST /mech/torque item Free
Work done calculator POST /mech/work-done item Free
Aliquot sum calculator POST /numth/aliquot-sum item Free
Amicable numbers checker POST /numth/amicable-numbers item Free
Armstrong number checker POST /numth/armstrong-number item Free
Automorphic number checker POST /numth/automorphic-number item Free
Digit sum calculator POST /numth/digit-sum item Free
Digital root calculator POST /numth/digital-root item Free
Number of divisors calculator POST /numth/divisor-count item Free
Sum of divisors calculator POST /numth/divisor-sum item Free
Euler's totient φ(n) POST /numth/euler-totient item Free
Extended Euclidean calculator POST /numth/extended-euclidean item Free
Factorial prime factorization POST /numth/factorial-prime-factors item Free
Happy number checker POST /numth/happy-number item Free
Jacobi symbol calculator POST /numth/jacobi-symbol item Free
Legendre symbol (a/p) POST /numth/legendre-symbol item Free
Mersenne number checker POST /numth/mersenne-number item Free
Modular exponentiation calculator POST /numth/modular-exponentiation item Free
Modular multiplicative inverse POST /numth/modular-inverse item Free
Next prime after n POST /numth/next-prime item Free
Pandigital number checker POST /numth/pandigital-checker item Free
Previous prime finder POST /numth/prev-prime item Free
Prime counting function π(n) POST /numth/prime-counting item Free
Quadratic residue checker POST /numth/quadratic-residue item Free
Radix converter POST /numth/radix-convert item Free
Factorial trailing zeros POST /numth/trailing-zeros-factorial item Free
Twin prime checker POST /numth/twin-primes item Free
Brewster angle calculator POST /optics/brewster-angle item Free
Critical angle calculator POST /optics/critical-angle item Free
Diffraction grating calculator POST /optics/diffraction-grating item Free
F-stop calculator POST /optics/f-number item Free
Lens magnification calculator POST /optics/lens-magnification item Free
Lens power calculator POST /optics/lens-power item Free
Mirror equation calculator POST /optics/mirror-equation item Free
Single-slit diffraction calculator POST /optics/single-slit-diffraction item Free
Snell's law calculator POST /optics/snell-law item Free
Telescope magnification calculator POST /optics/telescope-magnification item Free
Beat frequency calculator POST /phys/beat-frequency item Free
Doppler effect calculator POST /phys/doppler-effect item Free
Doppler shift sound calculator POST /phys/doppler-sound item Free
Period to frequency calculator POST /phys/period-frequency item Free
Pipe resonance calculator POST /phys/pipe-resonance item Free
Sound intensity calculator POST /phys/sound-intensity item Free
Decibel calculator POST /phys/sound-intensity-db item Free
Speed of sound calculator POST /phys/speed-of-sound-air item Free
Standing wave calculator POST /phys/standing-wave item Free
Wave speed on a string calculator POST /phys/wave-on-string-speed item Free
Wave speed calculator POST /phys/wave-speed item Free
Birthday paradox calculator POST /prob/birthday-paradox item Free
Coin flip probability POST /prob/coin-flip item Free
Conditional probability calculator POST /prob/conditional-probability item Free
Dice sum probability POST /prob/dice-sum item Free
Dice roll probability POST /prob/dice-target item Free
Expected value calculator POST /prob/expected-value item Free
Geometric distribution calculator POST /prob/geometric-distribution item Free
Hypergeometric probability POST /prob/hypergeometric item Free
Odds to probability converter POST /prob/odds-converter item Free
Poisson probability calculator POST /prob/poisson-distribution item Free
Poker hand odds POST /prob/poker-odds item Free
Beam deflection calculator POST /sci/beam-deflection item Free
Bending stress calculator POST /sci/bending-stress item Free
Gear ratio calculator POST /sci/gear-ratio item Free
Shear stress calculator POST /sci/shear-stress item Free
Stress calculator POST /sci/stress item Free
Thermal stress calculator POST /sci/thermal-stress item Free
Young's modulus calculator POST /sci/youngs-modulus item Free
Coefficient of variation calculator POST /stat/coefficient-variation item Free
Five-number summary calculator POST /stat/five-number-summary item Free
Geometric mean calculator POST /stat/geometric-mean item Free
Harmonic mean calculator POST /stat/harmonic-mean item Free
Linear regression calculator POST /stat/linear-regression item Free
Mean median mode calculator POST /stat/mean-median-mode item Free
Quartile and IQR calculator POST /stat/quartiles item Free
Skewness and kurtosis calculator POST /stat/skewness-kurtosis item Free
Variance calculator POST /stat/variance item Free
Weighted average calculator POST /stat/weighted-mean item Free
Z-score calculator POST /stat/z-score item Free
Remove duplicate lines POST /str/dedupe-lines item Free
Convert to dot.case POST /str/dot-case item Free
List unique words POST /str/extract-unique-words item Free
Find and replace text POST /str/find-replace item Free
Kebab-case converter POST /str/kebab-case item Free
Count lines POST /str/line-count item Free
Convert to lowercase POST /str/lowercase item Free
Add line numbers to text POST /str/number-lines item Free
Pad text POST /str/pad item Free
Count paragraphs POST /str/paragraph-count item Free
PascalCase converter POST /str/pascal-case item Free
Remove accents from text POST /str/remove-accents item Free
Remove line breaks from text POST /str/remove-line-breaks item Free
Remove extra spaces POST /str/remove-spaces item Free
Reverse text POST /str/reverse item Free
Reverse word order POST /str/reverse-words item Free
Sentence case converter POST /str/sentence-case item Free
Sentence counter POST /str/sentence-count item Free
Convert to snake_case POST /str/snake-case item Free
Sort lines alphabetically POST /str/sort-lines item Free
Title case converter POST /str/title-case item Free
Trim whitespace from every line POST /str/trim-lines item Free
Truncate text POST /str/truncate item Free
Word & character counter POST /str/word-count item Free
Area thermal expansion calculator POST /thermo/area-expansion item Free
Bernoulli equation calculator POST /thermo/bernoulli-pressure item Free
Boyle's law calculator POST /thermo/boyles-law item Free
Buoyancy calculator POST /thermo/buoyant-force item Free
Celsius to Fahrenheit calculator POST /thermo/celsius-fahrenheit item Free
Pipe flow continuity calculator POST /thermo/continuity-equation item Free
Partial pressure calculator POST /thermo/dalton-partial-pressure item Free
Entropy change calculator POST /thermo/entropy-change item Free
Mixing temperature calculator POST /thermo/final-temperature-mixing item Free
Gas density calculator POST /thermo/gas-density item Free
Molar volume calculator POST /thermo/gas-molar-volume item Free
Gay-Lussac law calculator POST /thermo/gay-lussac-law item Free
Specific heat calculator POST /thermo/heat-energy item Free
Hydrostatic pressure calculator POST /thermo/hydrostatic-pressure item Free
Ideal gas law calculator POST /thermo/ideal-gas-law item Free
Isothermal work calculator POST /thermo/isothermal-work item Free
Kelvin converter POST /thermo/kelvin-converter item Free
Linear thermal expansion calculator POST /thermo/linear-expansion item Free
Newton's law of cooling calculator POST /thermo/newton-cooling item Free
Pressure calculator POST /thermo/pressure-force-area item Free
Relative humidity calculator POST /thermo/relative-humidity item Free
Reynolds number calculator POST /thermo/reynolds-number item Free
Specific heat capacity calculator POST /thermo/specific-heat-capacity item Free
Heat conduction calculator POST /thermo/thermal-conduction item Free
Thermal efficiency calculator POST /thermo/thermal-efficiency item Free
Arrival local time calculator POST /travel/arrival-local-time item Free
Average speed calculator POST /travel/average-speed item Free
Travel points value calculator POST /travel/award-value item Free
Cycling time estimator POST /travel/cycling-time item Free
Travel distance unit converter POST /travel/distance-unit-convert item Free
ETA calculator POST /travel/eta-calculator item Free
MPG to L/100km converter POST /travel/fuel-economy-convert item Free
Luggage linear inches calculator POST /travel/luggage-linear-inches item Free
Luggage volume calculator POST /travel/luggage-volume item Free
Airline miles value calculator POST /travel/miles-to-points item Free
Driving range remaining calculator POST /travel/range-remaining item Free
Road trip time calculator POST /travel/road-trip-time item Free
Speed unit converter POST /travel/speed-unit-convert item Free
Timezone offset difference POST /travel/timezone-offset-diff item Free
Tire pressure by load calculator POST /travel/tire-pressure-load item Free
Road trip cost split POST /travel/trip-cost-split item Free
Trip fuel cost estimator POST /travel/trip-fuel-cost item Free
Walking time estimator POST /travel/walking-time item Free
Amplitude, period & phase shift calculator POST /trig/amplitude-period item Free
Angle of elevation calculator POST /trig/angle-of-elevation item Free
Coterminal angle calculator POST /trig/coterminal-angle item Free
Degrees minutes seconds converter POST /trig/dms-to-decimal item Free
Double-angle calculator POST /trig/double-angle item Free
Arccosine calculator POST /trig/inverse-cos item Free
Arctangent calculator POST /trig/inverse-tan item Free
Law of cosines angle finder POST /trig/law-of-cosines-angle item Free
Law of sines calculator POST /trig/law-of-sines item Free
Polar to rectangular converter POST /trig/polar-to-rectangular item Free
Reference angle calculator POST /trig/reference-angle item Free
Right triangle trig solver POST /trig/right-triangle-trig item Free
Sine cosine tangent calculator POST /trig/sin-cos-tan item Free
Sine wave calculator POST /trig/sine-wave item Free
Sum and difference angle calculator POST /trig/sum-difference item Free
Exact trig values calculator POST /trig/trig-exact-values item Free
Miles to km converter POST /conv/miles-to-km item Free
Bearing and heading calculator POST /trig/bearing item Free
Feet to cm converter POST /conv/feet-to-cm item Free
Triangular number calculator POST /math/triangular-number item Free
Harshad number checker POST /numth/harshad-number item Free
Rate constant from rate law calculator POST /chem/rate-constant-from-rate item Free
PEM Base64 encoder POST /enc/base64-pem item Free
Absence percentage calculator POST /fin/absence-percentage item Free
AAA triangle calculator POST /math/aaa-triangle item Free
Absolute humidity calculator POST /phys/absolute-humidity item Free
Get text embeddings POST /search/embed 1,000 tokens $0.002 Per use
Embed a whole corpus POST /search/embed-batch 1,000 tokens $0.002 Per use
Index your text POST /search/index-text 1,000 chunks $0.002 Per use
Index PDFs and scans POST /search/index-document page $0.010 Per use
Index a website POST /search/index-url page $0.040 Per use
Search by meaning POST /search/semantic query $0.002 Per use
Hybrid search POST /search/hybrid query $0.002 Per use
Rerank results POST /search/rerank query $0.002 Per use
Find similar documents POST /search/similar-docs query $0.002 Per use
Reverse image search POST /search/similar-images query $0.002 Per use
Recommend related content POST /search/recommend query $0.002 Per use
Cluster texts POST /search/cluster 1,000 rows $0.002 Per use
Detect outliers POST /search/outliers 1,000 rows $0.002 Per use
Match products POST /search/match-products item $0.002 Per use
Ask your documents POST /rag/answer query $0.003 Per use
Answers with citations POST /rag/answer-sources query $0.003 Per use
Chat with a PDF POST /rag/chat-pdf query $0.003 Per use
Chat with a website POST /rag/chat-website query $0.003 Per use
Build an FAQ bot POST /rag/faq-bot query $0.003 Per use
Rewrite queries POST /rag/query-rewrite query $0.003 Per use
Send a transactional email POST /notify/email email $0.002 Per use
Send email from a template POST /notify/email-template email $0.002 Per use
Email a file as attachment POST /notify/email-attachment email $0.002 Per use
Schedule an email POST /notify/email-scheduled email $0.002 Per use
Turn an email into a webhook POST /notify/email-in email $0.002 Per use
Batch events into one daily email POST /notify/digest email $0.002 Per use
Deliver webhooks reliably POST /notify/webhook delivery $0.002 Per use
Send a message to Slack POST /notify/slack message $0.002 Per use
Post to a Discord channel POST /notify/discord message $0.002 Per use
Route an alert to the right channel POST /notify/alert alert $0.002 Per use
Chain tasks together POST /flow/chain step $0.000 Per use
Run tasks in parallel POST /flow/parallel step $0.000 Per use
Branch your workflow POST /flow/conditional step $0.000 Per use
Run one task over 100,000 items POST /flow/batch item $0.002 Per use
Schedule a task POST /flow/schedule run $0.002 Per use
Retry failed tasks POST /flow/retry retry $0.002 Per use