OPERATIONAL
QuickFnd API
Access 250+ tools, calculators, and AI utilities programmatically. Free to use, no API key required. Perfect for building integrations, dashboards, or your own tool directory.
Rate Limits
Free Tier
100/day
No API key needed
Pro (Coming Soon)
Unlimited
API key + priority support
Endpoints
GET/api/public
API index — list available endpoints
https://quickfnd.com/api/public
GET/api/public/tools
List all tools with optional search and pagination
qstringSearch query (filters by name, slug, description)
limitnumberResults per page (default: 50, max: 200)
offsetnumberSkip first N results (for pagination)
https://quickfnd.com/api/public/tools?q=json&limit=10
GET/api/public/calculators
List all calculators with optional search and pagination
qstringSearch query
limitnumberResults per page (default: 50, max: 200)
offsetnumberSkip first N results
https://quickfnd.com/api/public/calculators?q=tax
GET/api/public/ai-tools
List all AI-powered tools
qstringSearch query
limitnumberResults per page
https://quickfnd.com/api/public/ai-tools
Response Format
{
"total": 118,
"count": 10,
"offset": 0,
"limit": 10,
"results": [
{
"name": "JSON Formatter",
"slug": "json-formatter",
"description": "Format, validate, and minify JSON...",
"url": "https://quickfnd.com/tools/json-formatter",
"engine_type": "json-formatter"
}
]
}
Quick Start
Fetch all tools with JavaScript:
fetch("https://quickfnd.com/api/public/tools")
.then(res => res.json())
.then(data => console.log(data.results));
Search for calculators with Python:
import requests
data = requests.get("https://quickfnd.com/api/public/calculators?q=tax").json()
for calc in data["results"]:
print(calc["name"], calc["url"])