Discover/Instant Domain Search API
live

Instant Domain Search APIinstantdomainsearch.com

Check domain availability across 800+ TLD extensions. Search by name or verify specific fully-qualified domains with registration status, premium pricing, and aftermarket data.

This API takes change requests — .
Endpoint health
verified 5d ago
check_domains
search_domains
2/2 passing latest checkself-healing
Endpoints
2
Updated
1mo ago

What is the Instant Domain Search API?

The Instant Domain Search API provides 2 endpoints to query domain name availability across more than 800 TLD extensions. The search_domains endpoint takes a bare name like techstartup and returns registration status, premium pricing, and aftermarket listing data for each TLD. The check_domains endpoint accepts fully-qualified domain names and returns a structured availability status and trust level for each.

Try it
Comma-separated list of TLD extensions to check (e.g. 'com,net,org,io,app'). When omitted, searches across 70+ popular TLDs including com, net, org, ai, io, xyz, app, shop, info, co, dev, tech, and many more.
Maximum number of results to return.
Domain name to search (without TLD extension), e.g. 'techstartup', 'myshop'.
api.parse.bot/scraper/bd8ee895-e91b-4c00-8acc-96aebe902484/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/bd8ee895-e91b-4c00-8acc-96aebe902484/search_domains?tlds=com%2Cnet%2Corg%2Cio&limit=10&query=techstartup' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace instantdomainsearch-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Instant Domain Search SDK — check availability across TLDs."""
from parse_apis.instant_domain_search_api import (
    InstantDomainSearch,
    Availability,
    InvalidQuery,
)

client = InstantDomainSearch()

# Search for domain availability across specific TLDs
for domain in client.domains.search(query="cloudnative", tlds="com,io,dev,app", limit=5):
    print(domain.domain, domain.is_registered, domain.tld)

# Drill into one result to inspect aftermarket listings
result = client.domains.search(query="startupkit", tlds="com,net", limit=1).first()
if result:
    print(result.domain, result.is_premium, result.premium_price_usd)
    for market in result.markets:
        print(market.market, market.type, market.price_usd)

# Check specific fully-qualified domains
for check in client.domainchecks.check(domains="example.com,google.com,mybrand.io", limit=5):
    print(check.name, check.availability, check.trust)

# Typed error handling for invalid input
try:
    client.domains.search(query="", limit=1).first()
except InvalidQuery as exc:
    print(f"Invalid query: {exc}")

print("exercised: domains.search / domainchecks.check / InvalidQuery error handling")
All endpoints · 2 totalmissing one? ·

Search domain availability for a given name across multiple TLD extensions. Returns registration status, premium pricing, and aftermarket listing information for each TLD. Results are returned in a single page; use the limit parameter to cap the number of domains checked.

Input
ParamTypeDescription
tldsstringComma-separated list of TLD extensions to check (e.g. 'com,net,org,io,app'). When omitted, searches across 70+ popular TLDs including com, net, org, ai, io, xyz, app, shop, info, co, dev, tech, and many more.
limitintegerMaximum number of results to return.
queryrequiredstringDomain name to search (without TLD extension), e.g. 'techstartup', 'myshop'.
Response
{
  "type": "object",
  "fields": {
    "query": "string - the search term used",
    "total": "integer - number of domain results returned",
    "domains": "array of domain availability objects with domain, label, tld, is_registered, is_premium, premium_price_usd, and markets fields"
  },
  "sample": {
    "data": {
      "query": "techstartup",
      "total": 4,
      "domains": [
        {
          "tld": "com",
          "label": "techstartup",
          "domain": "techstartup.com",
          "markets": [],
          "is_premium": false,
          "is_registered": true,
          "premium_price_usd": null
        },
        {
          "tld": "io",
          "label": "techstartup",
          "domain": "techstartup.io",
          "markets": [
            {
              "type": "buyNow",
              "market": "afternic.com",
              "price_usd": 4995
            }
          ],
          "is_premium": false,
          "is_registered": true,
          "premium_price_usd": null
        }
      ]
    },
    "status": "success"
  }
}

About the Instant Domain Search API

Endpoints and What They Return

The search_domains endpoint accepts a query parameter — a domain label without any TLD extension — and returns an array of domain availability objects covering up to 70+ TLDs by default. Pass a comma-separated tlds string (e.g. com,net,org,io,app) to restrict the search to specific extensions, or use the limit parameter to cap the number of results. Each result object includes registration status, whether the domain carries premium pricing, and any aftermarket listing data if the domain is for sale through a third-party marketplace.

Checking Specific Domains

The check_domains endpoint is designed for verification of fully-qualified domain names you already know — pass example.com,mybrand.io and get back a result for each. Availability status values include available, inuse, reserved, and unsupported, giving you precise signal on why a domain is unavailable beyond a simple registered/unregistered flag. A trust level field accompanies each result, which can be used to weight how much confidence to place in that availability reading.

Coverage and TLD Scope

The search_domains endpoint covers 800+ TLDs when tlds is not specified, spanning generic TLDs like .com and .net, country-code TLDs, and newer extensions like .app, .dev, and .io. The total field in the response tells you how many domains were evaluated for a given query. The check_domains endpoint marks domains under unsupported extensions with the unsupported status rather than silently omitting them.

Reliability & maintenanceVerified

The Instant Domain Search API is a managed, monitored endpoint for instantdomainsearch.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when instantdomainsearch.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official instantdomainsearch.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Checking bulk domain availability for a list of brand name candidates across .com, .io, and .app in a single call
  • Monitoring whether competitor or partner domains change registration status over time using check_domains
  • Surfacing aftermarket domain listings when a .com is taken, using the aftermarket data returned by search_domains
  • Filtering premium-priced domains from search results before presenting options to end users
  • Building a domain suggestion widget that queries search_domains with a tlds filter scoped to a target market
  • Validating a shortlist of fully-qualified domain names before purchasing, using the available/inuse/reserved status from check_domains
  • Identifying reserved domains (e.g. ICANN-reserved labels) to avoid registrar lookup failures downstream
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Instant Domain Search have an official developer API?+
Instant Domain Search does not publish a documented public developer API. The data accessible at instantdomainsearch.com is available through this Parse API.
What does the `available` vs `reserved` status mean in `check_domains` results?+
available means the domain is unregistered and can be purchased. reserved indicates the domain exists in a TLD registry's reserved list and cannot be registered through normal channels. inuse means the domain is currently registered, and unsupported means the TLD is outside what the endpoint covers for that query.
Does `search_domains` return WHOIS data or registrant contact information?+
No. The response covers registration status, premium pricing flags, and aftermarket listing data — not WHOIS records, registrant names, expiry dates, or DNS records. You can fork this API on Parse and revise it to add an endpoint that fetches WHOIS detail for a given domain.
How fresh is the availability data?+
Domain availability status reflects real-time registry state at the time of the request. Newly registered or just-expired domains may have a short propagation lag before status changes are reflected, which is a known characteristic of domain availability lookups generally rather than a specific limitation of this API.
Can I get historical registration data or domain expiry dates?+
Not currently. The API covers current availability status and aftermarket listing information. Historical registration records and expiry dates are not part of the response. You can fork this API on Parse and revise it to add an endpoint targeting a WHOIS or domain history data source.
Page content last updated . Spec covers 2 endpoints from instantdomainsearch.com.
Related APIs in Developer ToolsSee all →
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
python.org API
Access comprehensive Python release information including downloads, versions, and supported operating systems, plus stay updated with the latest Python news and events. Search across Python.org's resources and browse release files, details, and the FTP index all in one place.
nvidia.com API
nvidia.com API
lucide.dev API
Browse and download thousands of Lucide icons with instant search and category filtering to find exactly what you need. Get SVG files and metadata for each icon to integrate them seamlessly into your projects.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
trends.google.com API
Discover what's trending right now in any country by accessing the top search topics with real-time search volume, growth rates, and related queries. Stay informed on trending categories and see which searches are gaining the most momentum in your target markets.
ask.brave.com API
Ask Brave's AI-powered answer engine to get intelligent responses on any topic complete with cited sources, or use the suggest endpoint to discover relevant information and follow-up questions. Get AI-generated answers that combine web knowledge with source attribution, helping you research topics efficiently and verify information through direct references.