Free JSON API serving 24 developer tools. No API key, no rate limits, no signup. Fetch the tool list, embed individual tools, or link directly.
Start using the API in under 30 seconds. No registration, no tokens, no setup. Just fetch and go.
# Fetch the full tool listing
curl https://ai-first-dollar.netlify.app/api.json
// Fetch all tools and log them
fetch('https://ai-first-dollar.netlify.app/api.json')
.then(r => r.json())
.then(data => console.log(data.tools))
A single endpoint returns the complete tool catalog as JSON. CORS-enabled for browser-side requests.
GET https://ai-first-dollar.netlify.app/api.json
Content-Type: application/json
Status: 200 OK
{
"name": "AI DevToolkit",
"version": "1.0",
"total_tools": 24,
"base_url": "https://ai-first-dollar.netlify.app",
"tools": [
{
"name": "Base64 Encoder/Decoder",
"path": "/ai-base64/",
"category": "Encoding & Conversion"
},
// ... 23 more tools
]
}
Every tool is a standalone page hosted on Netlify. Click any tool to open it directly.
Use these snippets to integrate the DevToolkit API into your own project, dashboard, or directory.
// Fetch all tools and render a list
async function loadTools() {
const res = await fetch('https://ai-first-dollar.netlify.app/api.json');
const data = await res.json();
data.tools.forEach(tool => {
console.log(`${tool.name} - ${data.base_url}${tool.path}`);
});
}
loadTools();
import requests
resp = requests.get("https://ai-first-dollar.netlify.app/api.json")
data = resp.json()
for tool in data["tools"]:
print(f"{tool['name']} → {data['base_url']}{tool['path']}")
# Pretty-print the full API response
curl -s https://ai-first-dollar.netlify.app/api.json | jq '.'
# List just tool names
curl -s https://ai-first-dollar.netlify.app/api.json | jq '.tools[].name'
# Filter tools by category
curl -s https://ai-first-dollar.netlify.app/api.json | jq '[.tools[] | select(.category == "Encoding")]'
import { useState, useEffect } from 'react';
function ToolList() {
const [tools, setTools] = useState([]);
useEffect(() => {
fetch('https://ai-first-dollar.netlify.app/api.json')
.then(r => r.json())
.then(d => setTools(d.tools));
}, []);
return (
<ul>
{tools.map(t => <li key={t.path}><a href={t.url}>{t.name}</a></li>)}
</ul>
);
}
Link directly to any tool from your site, blog, or documentation. Each tool is a standalone page with its own URL.
Every tool has a permanent URL. Use these in docs, READMEs, dashboards, or anywhere you need a quick link.
<!-- Link to a specific tool -->
<a href="https://ai-first-dollar.netlify.app/ai-json-formatter/">
JSON Formatter
</a>
<!-- Link to Base64 encoder -->
<a href="https://ai-first-dollar.netlify.app/ai-base64/">
Base64 Encoder/Decoder
</a>
<!-- Link to Hash Generator -->
<a href="https://ai-first-dollar.netlify.app/ai-hash-generator/">
Hash Generator
</a>
You can embed any tool directly into your page using an iframe. Each tool is fully self-contained.
<!-- Embed JSON Formatter -->
<iframe
src="https://ai-first-dollar.netlify.app/ai-json-formatter/"
width="100%"
height="600"
style="border:1px solid #30363d; border-radius:8px;"
loading="lazy"
></iframe>
<!-- Embed Password Strength Checker -->
<iframe
src="https://ai-first-dollar.netlify.app/ai-password-check/"
width="100%"
height="500"
style="border:1px solid #30363d; border-radius:8px;"
loading="lazy"
></iframe>
Build a dynamic tool directory on your own site by fetching the API and rendering links.
// Build a dynamic tool directory
fetch('https://ai-first-dollar.netlify.app/api.json')
.then(r => r.json())
.then(data => {
const container = document.getElementById('tools');
data.tools.forEach(tool => {
const link = document.createElement('a');
link.href = data.base_url + tool.path;
link.textContent = tool.name;
link.target = '_blank';
container.appendChild(link);
});
});
## Developer Tools
- [JSON Formatter](https://ai-first-dollar.netlify.app/ai-json-formatter/)
- [Base64 Encoder](https://ai-first-dollar.netlify.app/ai-base64/)
- [Hash Generator](https://ai-first-dollar.netlify.app/ai-hash-generator/)
- [Regex Reference](https://ai-first-dollar.netlify.app/ai-regex/)
- [Password Checker](https://ai-first-dollar.netlify.app/ai-password-check/)
- [All 24 tools...](https://ai-first-dollar.netlify.app/ai-dev-api/)
This is an AI experiment: can an AI build, ship, and grow 24 useful developer tools from scratch, and turn them into something that earns real revenue?
Every tool in this collection was conceived, designed, coded, and deployed by AI. The goal: build genuinely useful developer utilities and see if AI-generated software can stand on its own in the real world.
The tools are 100% free with no API keys, no rate limits, and no signup. All processing happens client-side in your browser. Nothing is sent to a server. Your data stays yours.
The JSON endpoint provides a machine-readable catalog of all tools. Use it to build your own directory, integrate into dashboards, or programmatically discover new tools as they're added.
This is not a VC-backed startup. It is a solo experiment testing whether AI can create real value. Every tool is a static page, every line of code is inspectable, and the API is a simple JSON file.
If these tools save you time, consider supporting the project. Every contribution helps keep the tools free and funds the development of new ones.
You can also support by sharing any tool with a friend, linking to the API page from your blog, or starring the project. Word of mouth is the most powerful growth engine.