Overview
Domainsdb.info lets you search registered domain names by keyword, TLD, or zone with no authentication needed. Great for brand monitoring or finding related domains at scale.
Beginner Tip
No sign-up needed — just send a GET request. Try: https://api.domainsdb.info/v1/domains/search?domain=example&zone=com to find .com domains containing "example".
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"status": "success",
"data": {
"result": "Data from Domainsdb.info",
"description": "Registered Domain Names Search",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
domains List of domain objects matching the search criteria. domains[].domain The full registered domain name (e.g. "openai.com"). domains[].create_date ISO 8601 date when the domain was first registered. domains[].update_date ISO 8601 date of the most recent WHOIS record update. domains[].country Two-letter country code of the registrant, when available. total Total number of matching domains across all pages. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.domainsdb.info/v1/domains/search?domain=openai&zone=com&limit=10";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Similar APIs
View All →markerapi
⭐ Beginner's PickMarkerapi provides free search access to the USPTO trademark database, letting you check if a brand name is already trademarked.
Tenders in Hungary
⭐ Beginner's PickThe Tenders in Hungary API from tenders.guru delivers publicly available government procurement data for Hungary, including contract values, buyer and supplier names, and tender dates.
Tenders in Poland
⭐ Beginner's PickThe Tenders in Poland API provides structured access to Polish government procurement notices and contract awards from tenders.guru, covering public sector buyers across all regions of Poland.
Tenders in Romania
⭐ Beginner's PickThe Tenders in Romania API by tenders.guru exposes Romanian public procurement data including tender details, contract values, and awarded suppliers, all freely accessible without authentication.
Tenders in Spain
⭐ Beginner's PickThe Tenders in Spain API from tenders.guru delivers Spanish public procurement data in JSON format, covering central government, autonomous communities, and local authorities.