When should I start with this collection?
Start here when your work begins with pasted data, config files, tokens, or headers and you want to inspect or convert them in sequence.
Press / to search
Collection
Format, inspect, convert, and validate payloads in the browser when you need a fast dev workflow without opening heavier tooling.
8 tools in this category
← HomeThis collection groups the TeaFun tools that are most useful when a workflow starts with raw data. It helps you move from pasted payloads to a verified result quickly without juggling several different apps.
These are the tools you reach for when a task starts with raw text someone pasted into a chat or a ticket: a JSON blob, a config file, a token, a log line, a stray header. Each tool runs entirely in your browser, so payloads never leave your machine — useful when the data comes from a production system you would rather not paste into an unknown web service. The set covers the four jobs that come up most: reformatting and validating, converting between formats (JSON, YAML, TOML, .env), decoding (Base64, JWT), and reading structured output such as HTTP headers and logs. Nothing here installs, signs you in, or stores your input.
Most debugging sessions follow a chain rather than a single step. Start with whatever you were handed. If it is unreadable, run it through the JSON formatter or log formatter first so you can see the structure. If the shape is right but the format is wrong for the next system, use the YAML/JSON/TOML or env converter. If a value looks encoded, decode it with the Base64 tool or, for auth tokens, the JWT decoder to read the claims. When you need to know exactly what a server sent, the HTTP headers checker shows the raw response. Each result is plain text you can copy straight into the next tool.
Heavy IDEs and desktop utilities are overkill when you just need to look at one payload. Opening a browser tab is faster than launching an app, and because every tool here is client-side there is no upload step and no account wall between you and the answer. That also matters for privacy: a customer's JSON, an internal log, or a signed token stays in the tab and is gone when you close it. The trade-off is that these are inspection and conversion tools, not full editors — for large-scale refactoring you will still want your usual environment. For a quick look or a one-off conversion, staying in the browser is simply less friction.
Use the built-in workbench to switch between the most common tools in this workflow without opening a new page.
0 / 500,000 bytes
Multi-document YAML is supported, and anchors are resolved locally before conversion.
0 / 1,048,576 bytes
0 / 1,048,576 bytes
Use these dedicated tools when the job expands beyond the core workbench.
Decode JWT headers and payloads locally in your browser. Inspect claims, expiry, issuer, and timestamps without sending tokens anywhere.
Paste raw response headers or curl -I output to review common security headers locally, including CSP, HSTS, and COOP.
Paste JSON, nginx, Docker, syslog, or plain logs to normalize, filter by level, and inspect them locally in your browser.
Encode and decode Base64 locally in your browser. Supports text conversion, URL-safe Base64, and file-to-Base64 export.
Build cron expressions visually for Unix, Quartz, AWS EventBridge, and GitHub Actions. Preview upcoming run times instantly in your browser.
Start here when your work begins with pasted data, config files, tokens, or headers and you want to inspect or convert them in sequence.
The developer category shows every dev tool. This collection narrows the path to the tools that usually belong in the same payload-debugging or data-conversion workflow.
No. Every tool in this collection runs locally in your browser using standard web APIs. Your JSON, tokens, logs, and config files are never sent to a server, so you can safely paste data from internal or production systems.
Yes. Each tool outputs plain text, so a formatted or converted result copies cleanly into the next one — for example, decode a Base64 string, paste the JSON it contains into the formatter, then convert that to YAML.