Soenneker.Domainr.Util 3.0.166

Prefix Reserved
dotnet add package Soenneker.Domainr.Util --version 3.0.166
                    
NuGet\Install-Package Soenneker.Domainr.Util -Version 3.0.166
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Domainr.Util" Version="3.0.166" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Domainr.Util" Version="3.0.166" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Domainr.Util" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Domainr.Util --version 3.0.166
                    
#r "nuget: Soenneker.Domainr.Util, 3.0.166"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Soenneker.Domainr.Util&version=3.0.166
                    
Install Soenneker.Domainr.Util as a Cake Addin
#tool nuget:?package=Soenneker.Domainr.Util&version=3.0.166
                    
Install Soenneker.Domainr.Util as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Domainr.Util

A .NET typesafe implementation of Domainr's API

DomainrUtil is a utility class that provides an easy way to interact with the Domainr API. It helps check domain name availability, fetch domain status, and get registration details.

Features

  • Search for available domain names.
  • Check status of domain names.
  • Retrieve registration information for domains.

Installation

dotnet add package Soenneker.Domainr.Util

Register via DI:

services.AddDomainrUtilAsScoped();

Usage

Searching for a Domain

var searchRequest = new DomainrSearchRequest { Query = "example" };
var result = await _domainrUtil.Search(searchRequest);

if (result?.Results != null)
{
    foreach (var domain in result.Results)
    {
        Console.WriteLine($"Domain: {domain.Domain}, Register: {domain.RegisterUrl}");
    }
}
🔹 Search Response Structure
Property Type Description
Domain string? The full domain name found in search results.
Host string? The host part of the domain.
Subdomain string? The subdomain part of the domain.
Zone string? The top-level domain (TLD) of the domain name.
Path string? Any associated path with the domain (if applicable).
RegisterUrl string? A direct URL to register the domain.

3. Checking Domain Status

The Status method fetches real-time information about a domain’s availability.

var statusRequest = new DomainrStatusRequest { Domain = "example.com" };
var statusResponse = await _domainrUtil.Status(statusRequest);

if (statusResponse?.Status != null)
{
    foreach (var status in statusResponse.Status)
    {
        Console.WriteLine($"Domain: {status.Domain}, Status: {status.Status}");
    }
}
🔹 Status Response Structure
Property Type Description
Status List<DomainrStatusResult>? A list of domain status results.

Each DomainrStatusResult contains information about the queried domain’s availability and status.

🔹 Status Result Structure
Property Type Description
Domain string? The full domain name being checked.
Zone string? The top-level domain (TLD) of the domain.
Status string? A space-delimited list of status types (e.g., available taken blocked).
Summary string? (Deprecated)
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.166 121 4/9/2025
3.0.165 127 4/9/2025
3.0.164 121 4/9/2025
3.0.163 118 4/9/2025
3.0.162 114 4/9/2025
3.0.161 115 4/9/2025
3.0.160 120 4/9/2025
3.0.159 124 4/8/2025
3.0.158 120 4/8/2025
3.0.157 118 4/8/2025
3.0.156 119 4/8/2025
3.0.155 100 4/8/2025
3.0.154 124 4/8/2025
3.0.153 123 4/8/2025
3.0.152 122 4/8/2025
3.0.151 118 4/8/2025
3.0.150 119 4/8/2025
3.0.149 115 4/8/2025
3.0.148 114 4/8/2025
3.0.147 116 4/8/2025
3.0.146 110 4/8/2025
3.0.145 113 4/8/2025
3.0.144 124 4/8/2025
3.0.143 120 4/8/2025
3.0.142 111 4/8/2025
3.0.141 116 4/8/2025
3.0.140 117 4/8/2025
3.0.139 112 4/7/2025
3.0.138 115 4/7/2025
3.0.137 111 4/7/2025
3.0.136 115 4/7/2025
3.0.135 112 4/7/2025
3.0.134 121 4/7/2025
3.0.133 130 4/7/2025
3.0.132 130 4/7/2025
3.0.131 128 4/7/2025
3.0.130 125 4/7/2025
3.0.129 139 4/7/2025
3.0.128 141 4/7/2025
3.0.127 130 4/7/2025
3.0.126 138 4/7/2025
3.0.125 137 4/7/2025
3.0.124 138 4/7/2025
3.0.123 140 4/7/2025
3.0.122 139 4/7/2025
3.0.121 142 4/7/2025
3.0.120 144 4/7/2025
3.0.119 141 4/7/2025
3.0.118 144 4/7/2025
3.0.117 145 4/7/2025
3.0.116 138 4/7/2025
3.0.115 140 4/7/2025
3.0.114 142 4/6/2025
3.0.113 134 4/6/2025
3.0.112 136 4/6/2025
3.0.111 139 4/6/2025
3.0.110 140 4/6/2025
3.0.109 140 4/6/2025
3.0.108 134 4/6/2025
3.0.107 115 4/6/2025
3.0.106 117 4/6/2025
3.0.105 114 4/6/2025
3.0.104 118 4/6/2025
3.0.103 114 4/6/2025
3.0.102 118 4/6/2025
3.0.101 117 4/6/2025
3.0.100 88 4/6/2025
3.0.99 84 4/6/2025
3.0.98 86 4/6/2025
3.0.97 91 4/6/2025
3.0.96 78 4/6/2025
3.0.95 85 4/6/2025
3.0.94 95 4/6/2025
3.0.93 94 4/6/2025
3.0.92 84 4/5/2025
3.0.91 88 4/5/2025
3.0.90 63 4/5/2025
3.0.89 63 4/5/2025
3.0.88 64 4/5/2025
3.0.87 65 4/5/2025
3.0.86 65 4/5/2025
3.0.85 70 4/5/2025
3.0.84 65 4/5/2025
3.0.83 71 4/5/2025
3.0.82 68 4/4/2025
3.0.81 83 4/4/2025
3.0.80 117 4/4/2025
3.0.79 119 4/4/2025
3.0.78 131 4/4/2025
3.0.77 139 4/4/2025
3.0.76 140 4/3/2025
3.0.75 140 4/2/2025
3.0.74 138 4/2/2025
3.0.73 131 4/1/2025
3.0.72 143 4/1/2025
3.0.71 137 4/1/2025
3.0.70 136 4/1/2025
3.0.69 131 4/1/2025
3.0.68 136 4/1/2025
3.0.67 139 4/1/2025
3.0.66 133 4/1/2025
3.0.65 143 4/1/2025
3.0.64 142 4/1/2025
3.0.63 148 4/1/2025
3.0.62 133 4/1/2025
3.0.61 140 4/1/2025
3.0.60 146 4/1/2025
3.0.59 132 3/31/2025
3.0.58 139 3/31/2025
3.0.57 147 3/31/2025
3.0.56 140 3/31/2025
3.0.55 148 3/31/2025
3.0.54 144 3/31/2025
3.0.53 140 3/31/2025
3.0.52 124 3/30/2025
3.0.51 126 3/29/2025
3.0.50 60 3/29/2025
3.0.49 61 3/29/2025
3.0.48 63 3/29/2025
3.0.47 69 3/29/2025
3.0.46 67 3/29/2025
3.0.45 73 3/29/2025
3.0.44 108 3/27/2025
3.0.43 110 3/27/2025
3.0.42 110 3/27/2025
3.0.41 110 3/27/2025
3.0.40 115 3/27/2025
3.0.39 442 3/26/2025
3.0.38 444 3/26/2025
3.0.37 442 3/26/2025
3.0.36 442 3/25/2025
3.0.35 443 3/25/2025
3.0.34 443 3/25/2025
3.0.33 445 3/25/2025
3.0.32 455 3/25/2025
3.0.31 450 3/25/2025
3.0.30 76 3/22/2025
3.0.29 55 3/22/2025
3.0.28 56 3/22/2025
3.0.27 63 3/21/2025
3.0.26 79 3/21/2025
3.0.25 83 3/21/2025
3.0.24 101 3/21/2025
3.0.23 99 3/21/2025
3.0.22 112 3/21/2025
3.0.21 110 3/21/2025
3.0.20 126 3/21/2025
3.0.19 131 3/20/2025
3.0.18 130 3/20/2025
3.0.17 131 3/19/2025
3.0.16 130 3/19/2025
3.0.15 127 3/18/2025
3.0.14 127 3/18/2025
3.0.13 130 3/18/2025
3.0.12 128 3/18/2025
3.0.11 126 3/18/2025
3.0.10 135 3/18/2025
3.0.9 127 3/18/2025
3.0.8 133 3/18/2025
3.0.7 130 3/18/2025
3.0.6 127 3/18/2025
3.0.5 129 3/18/2025
3.0.4 124 3/16/2025
3.0.3 121 3/16/2025
3.0.2 57 3/15/2025
3.0.1 60 3/15/2025