Domainsdb.info API

⭐ Beginner's Pick Business / No Auth Required Beginner HTTPS
Free to Use Varies (check documentation)

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

Use case: Integrate registered domain names search data into web and mobile applications
Domainsdb.info data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON 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

const url = "https://domainsdb.info/";
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

Empty domains array The zone or domain keyword returns no matches
Try without the zone filter first, or broaden your keyword to a single short word.
429 Too Many Requests The free tier has a rate limit of roughly 10 requests per minute
Add a delay between calls. For bulk lookups, cache results and avoid re-fetching the same domains.
Slow response times Large result sets can take several seconds to return
Use the limit parameter (e.g. &limit=20) to cap results and improve response speed.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 15/20
🔒 Security 15/15
🛠 Developer XP 12/20
✓ Reliability 7/15
Response Time 394ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS NO
Category Business
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →