# Domain Search is now available through the Vercel CLI

**Published:** June 9, 2026 | **Authors:** Can Temizyurek, Elliot Dauber

---

You can now use the Vercel CLI to search domains. Using the `vercel domains search` command, you can supply a domain name and retrieve availability and price results for all TLDs that Vercel supports.

```bash
~ vercel domains search acmesite --limit 5
> Domain        Availability  Purchase        Renewal
  acmesite.com  Unavailable   -               -
  acmesite.dev  Available     $13 / 1 year    $13 / 1 year
  acmesite.app  Available     $14.99 / 1 year $15 / 1 year
  acmesite.io   Available     $37.99 / 1 year $46 / 1 year
  acmesite.ai   Available     $160 / 2 years  $160 / 2 years
> To continue, run `vercel domains search acmesite --next eyJxdWVyeSI6ImFjbWVza...
```

You can also filter by TLD, apply sorting, and filter out unavailable domains.

```bash
vercel domains search acmesite --tld com --tld ai
vercel domains search acmesite --available
vercel domains search acmesite --order alphabetical
vercel domains search acmesite --format json
vercel domains search --help
```

Upgrade your Vercel CLI to version `54.10.1` to get started.

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)