API Documentation
Every quickhelp.dev tool is available as a REST API. No auth required for the anonymous free tier (30 req/min per IP). The full OpenAPI 3.1 spec is at /openapi.json.
Quick start
curl -X POST https://quickhelp.dev/api/jwt-decoder \
-H 'Content-Type: application/json' \
-d '{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."}'Tool endpoints
- encodingPOST
/api/jwt-decoderJWT Decoder
Decode and verify JSON Web Tokens — header, payload, claims, and signature.
- formattingPOST
/api/json-formatterJSON Formatter
Pretty-print or minify JSON — with syntax validation.
- conversionPOST
/api/image-converterImage Converter
Convert images between PNG, JPEG, WebP, AVIF, TIFF, GIF, and SVG formats
- conversionPOST
/api/background-removerBackground Remover
Remove image backgrounds instantly with AI — returns a transparent PNG
- validationPOST
/api/lcov-viewerLCOV Coverage Viewer
Parse and visualize LCOV code coverage reports — line, function, and branch coverage per file.
- conversionPOST
/api/image-resizerImage Resizer & Cropper
Resize, crop, rotate, and flip images online — free, runs in your browser, no upload required.
- encodingPOST
/api/base64Base64 Encoder / Decoder
Encode text or data to Base64, or decode Base64 back to plain text.
- cryptographyPOST
/api/hash-generatorHash Generator
Generate MD5, SHA-1, SHA-256, SHA-384, or SHA-512 hashes from any text input.
- encodingPOST
/api/url-encoderURL Encoder / Decoder
Encode or decode URLs and query string components using percent-encoding (RFC 3986).
- datetimePOST
/api/timestamp-converterUnix Timestamp Converter
Convert Unix timestamps to human-readable dates and ISO 8601, or convert dates back to epoch seconds.
- generationPOST
/api/uuid-generatorUUID Generator
Generate one or more cryptographically random UUID v4 identifiers instantly.
- textPOST
/api/text-case-converterText Case Converter
Convert text between camelCase, snake_case, kebab-case, PascalCase, and 7 other naming conventions.
- formattingPOST
/api/json-to-csvJSON to CSV Converter
Convert a JSON array of objects to CSV, or parse CSV back to JSON.
- conversionPOST
/api/color-converterColor Converter
Convert colors between HEX, RGB, HSL, and HSV — instantly and in any direction.
- encodingPOST
/api/number-base-converterNumber Base Converter
Convert numbers between binary, octal, decimal, and hexadecimal.
Agent discovery surfaces
quickhelp.dev is designed for AI agent consumption. Beyond the REST API, these surfaces provide machine-readable tool discovery:
- /openapi.json— OpenAPI 3.1 — all endpoints with schemas
- /llms.txt— llms.txt discovery document
- /llms-full.txt— Full content dump for one-shot AI context loading
- /mcp— Model Context Protocol endpoint (HTTP transport)