Quick Start
Get up and running with Dev Tools API in under a minute.
1. Get your API key
Sign up on RapidAPI to get your free API key. The Basic plan includes generous rate limits at no cost.
2. Make your first request
curl -H "X-API-Key: YOUR_KEY" \
"https://devtools.toolkitapi.io/health"
import httpx
resp = httpx.get(
"https://devtools.toolkitapi.io/health",
headers={"X-API-Key": "YOUR_KEY"},
)
print(resp.json())
const resp = await fetch("https://devtools.toolkitapi.io/health", {
headers: { "X-API-Key": "YOUR_KEY" },
});
const data = await resp.json();
console.log(data);
3. Explore endpoints
Browse the full tool listing to find the endpoint you need.