EMBED ASK 67
Put an instant answer box on your site in one line — free, no key, no tracking of your visitors.
Live demo
This is the actual widget. Try 15% of 240, 20 miles to km, or days until christmas:
1. The widget
Drop these two lines anywhere in your HTML. Answers compute in the visitor's browser; results link through to the full tool.
<div id="ask67-widget"></div> <script src="https://67fresh.com/embed.js" async></script>
Styling is self-contained and adapts to light or dark sites. No build step, no dependencies.
2. The JSON API
Prefer to call it from your own code? The answer API returns structured JSON. (Computed in your browser via the library below, or self-hosted as a Cloudflare Worker — see answer-api.js in the repo.)
GET https://api.67fresh.com/answer?q=15%25%20of%20240
{
"query": "15% of 240",
"kind": "percent",
"answer": "36",
"detail": null,
"tool": "percentage.html"
}
3. The JavaScript library
Load ask67.js and call Ask67.parse() directly — it's pure, dependency-free, and runs anywhere:
<script src="https://67fresh.com/ask67.js"></script>
<script>
const a = Ask67.parse("20 miles to km");
console.log(a.primary); // "32.18688 km"
</script>
Free to use. A link back to 67fresh.com is appreciated but not required.