Soenneker.Domainr.Util 3.0.200

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Domainr.Util --version 3.0.200
                    
NuGet\Install-Package Soenneker.Domainr.Util -Version 3.0.200
                    
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.200" />
                    
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.200" />
                    
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.200
                    
#r "nuget: Soenneker.Domainr.Util, 3.0.200"
                    
#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.200
                    
Install Soenneker.Domainr.Util as a Cake Addin
#tool nuget:?package=Soenneker.Domainr.Util&version=3.0.200
                    
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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.229 0 5/28/2025
3.0.228 0 5/28/2025
3.0.227 21 5/28/2025
3.0.226 26 5/28/2025
3.0.225 29 5/27/2025
3.0.224 31 5/27/2025
3.0.223 33 5/27/2025
3.0.222 29 5/27/2025
3.0.221 34 5/27/2025
3.0.220 30 5/26/2025
3.0.219 47 5/25/2025
3.0.218 53 5/25/2025
3.0.217 49 5/25/2025
3.0.216 57 5/23/2025
3.0.215 61 5/23/2025
3.0.214 69 5/23/2025
3.0.213 77 5/23/2025
3.0.212 79 5/23/2025
3.0.211 90 5/23/2025
3.0.210 96 5/23/2025
3.0.209 104 5/23/2025
3.0.208 111 5/23/2025
3.0.207 124 5/22/2025
3.0.206 122 5/18/2025
3.0.205 77 5/18/2025
3.0.204 200 5/15/2025
3.0.203 211 5/14/2025
3.0.202 204 5/14/2025
3.0.201 222 5/14/2025
3.0.200 205 5/14/2025
3.0.199 207 5/14/2025
3.0.198 201 5/13/2025
3.0.197 91 5/9/2025
3.0.196 136 5/8/2025
3.0.195 127 5/8/2025
3.0.194 127 5/8/2025
3.0.193 130 5/8/2025
3.0.192 132 5/8/2025
3.0.191 123 5/8/2025
3.0.190 125 5/8/2025
3.0.189 130 5/8/2025
3.0.188 129 5/7/2025
3.0.187 130 5/7/2025
3.0.186 127 5/6/2025
3.0.185 125 5/6/2025
3.0.184 131 5/6/2025
3.0.183 127 5/6/2025
3.0.182 123 5/6/2025
3.0.181 125 5/6/2025
3.0.180 134 5/5/2025
3.0.179 128 5/5/2025
3.0.178 133 5/5/2025
3.0.177 133 5/5/2025
3.0.176 124 5/5/2025
3.0.175 128 5/5/2025
3.0.174 126 5/5/2025
3.0.173 137 5/5/2025
3.0.172 127 5/5/2025
3.0.171 130 5/5/2025
3.0.170 142 4/27/2025
3.0.169 126 4/27/2025
3.0.168 79 4/26/2025
3.0.167 75 4/26/2025
3.0.166 157 4/9/2025
3.0.165 159 4/9/2025
3.0.164 152 4/9/2025
3.0.163 153 4/9/2025
3.0.162 149 4/9/2025
3.0.161 154 4/9/2025
3.0.160 150 4/9/2025
3.0.159 159 4/8/2025
3.0.158 153 4/8/2025
3.0.157 147 4/8/2025
3.0.156 153 4/8/2025
3.0.155 134 4/8/2025
3.0.154 153 4/8/2025
3.0.153 152 4/8/2025
3.0.152 149 4/8/2025
3.0.151 148 4/8/2025
3.0.150 156 4/8/2025
3.0.149 146 4/8/2025
3.0.148 147 4/8/2025
3.0.147 145 4/8/2025
3.0.146 152 4/8/2025
3.0.145 142 4/8/2025
3.0.144 154 4/8/2025
3.0.143 152 4/8/2025
3.0.142 144 4/8/2025
3.0.141 147 4/8/2025
3.0.140 145 4/8/2025
3.0.139 140 4/7/2025
3.0.138 146 4/7/2025
3.0.137 146 4/7/2025
3.0.136 148 4/7/2025
3.0.135 145 4/7/2025
3.0.134 152 4/7/2025
3.0.133 152 4/7/2025
3.0.132 153 4/7/2025
3.0.131 152 4/7/2025
3.0.130 149 4/7/2025
3.0.129 145 4/7/2025
3.0.128 150 4/7/2025
3.0.127 139 4/7/2025
3.0.126 144 4/7/2025
3.0.125 147 4/7/2025
3.0.124 148 4/7/2025
3.0.123 147 4/7/2025
3.0.122 146 4/7/2025
3.0.121 148 4/7/2025
3.0.120 153 4/7/2025
3.0.119 147 4/7/2025
3.0.118 150 4/7/2025
3.0.117 151 4/7/2025
3.0.116 144 4/7/2025
3.0.115 148 4/7/2025
3.0.114 150 4/6/2025
3.0.113 140 4/6/2025
3.0.112 142 4/6/2025
3.0.111 146 4/6/2025
3.0.110 152 4/6/2025
3.0.109 148 4/6/2025
3.0.108 147 4/6/2025
3.0.107 121 4/6/2025
3.0.106 123 4/6/2025
3.0.105 121 4/6/2025
3.0.104 124 4/6/2025
3.0.103 123 4/6/2025
3.0.102 124 4/6/2025
3.0.101 125 4/6/2025
3.0.100 94 4/6/2025
3.0.99 90 4/6/2025
3.0.98 92 4/6/2025
3.0.97 98 4/6/2025
3.0.96 85 4/6/2025
3.0.95 92 4/6/2025
3.0.94 101 4/6/2025
3.0.93 100 4/6/2025
3.0.92 91 4/5/2025
3.0.91 94 4/5/2025
3.0.90 69 4/5/2025
3.0.89 70 4/5/2025
3.0.88 70 4/5/2025
3.0.87 74 4/5/2025
3.0.86 73 4/5/2025
3.0.85 76 4/5/2025
3.0.84 71 4/5/2025
3.0.83 80 4/5/2025
3.0.82 72 4/4/2025
3.0.81 87 4/4/2025
3.0.80 127 4/4/2025
3.0.79 126 4/4/2025
3.0.78 138 4/4/2025
3.0.77 143 4/4/2025
3.0.76 144 4/3/2025
3.0.75 147 4/2/2025
3.0.74 142 4/2/2025
3.0.73 135 4/1/2025
3.0.72 150 4/1/2025
3.0.71 142 4/1/2025
3.0.70 140 4/1/2025
3.0.69 135 4/1/2025
3.0.68 144 4/1/2025
3.0.67 148 4/1/2025
3.0.66 138 4/1/2025
3.0.65 147 4/1/2025
3.0.64 146 4/1/2025
3.0.63 152 4/1/2025
3.0.62 138 4/1/2025
3.0.61 144 4/1/2025
3.0.60 150 4/1/2025
3.0.59 136 3/31/2025
3.0.58 144 3/31/2025
3.0.57 152 3/31/2025
3.0.56 144 3/31/2025
3.0.55 152 3/31/2025
3.0.54 149 3/31/2025
3.0.53 144 3/31/2025
3.0.52 131 3/30/2025
3.0.51 132 3/29/2025
3.0.50 67 3/29/2025
3.0.49 67 3/29/2025
3.0.48 69 3/29/2025
3.0.47 75 3/29/2025
3.0.46 73 3/29/2025
3.0.45 79 3/29/2025
3.0.44 118 3/27/2025
3.0.43 116 3/27/2025
3.0.42 116 3/27/2025
3.0.41 117 3/27/2025
3.0.40 122 3/27/2025
3.0.39 448 3/26/2025
3.0.38 452 3/26/2025
3.0.37 450 3/26/2025
3.0.36 451 3/25/2025
3.0.35 452 3/25/2025
3.0.34 453 3/25/2025
3.0.33 455 3/25/2025
3.0.32 466 3/25/2025
3.0.31 459 3/25/2025
3.0.30 85 3/22/2025
3.0.29 65 3/22/2025
3.0.28 66 3/22/2025
3.0.27 72 3/21/2025
3.0.26 85 3/21/2025
3.0.25 88 3/21/2025
3.0.24 107 3/21/2025
3.0.23 105 3/21/2025
3.0.22 117 3/21/2025
3.0.21 115 3/21/2025
3.0.20 132 3/21/2025
3.0.19 137 3/20/2025
3.0.18 136 3/20/2025
3.0.17 135 3/19/2025
3.0.16 134 3/19/2025
3.0.15 130 3/18/2025
3.0.14 131 3/18/2025
3.0.13 134 3/18/2025
3.0.12 133 3/18/2025
3.0.11 131 3/18/2025
3.0.10 139 3/18/2025
3.0.9 131 3/18/2025
3.0.8 136 3/18/2025
3.0.7 134 3/18/2025
3.0.6 130 3/18/2025
3.0.5 132 3/18/2025
3.0.4 127 3/16/2025
3.0.3 124 3/16/2025
3.0.2 63 3/15/2025
3.0.1 64 3/15/2025