Loading...
Loading...
Programmatic access to domain availability + SSL catalog. Powered by OpenProvider.
Send your key in the x-api-key header. Keys are generated in your dashboard.
All responses include a powered_by header.
Copy/paste starter snippets.
curl -s -H "x-api-key: YOUR_API_KEY" "https://buildwithai.digital/api/v1/domains/check?query=verde&tlds=com,digital,ai"
const res = await fetch("https://buildwithai.digital/api/v1/domains/check?query=verde", {
headers: { "x-api-key": process.env.BWAI_API_KEY },
});
const data = await res.json();
console.log(data.results);import os
import requests
url = "https://buildwithai.digital/api/v1/domains/check?query=verde"
res = requests.get(url, headers={"x-api-key": os.environ["BWAI_API_KEY"]})
print(res.json()["results"])API usage is attributed to the key owner. Future registration endpoints can automatically propagate partner attribution.