Soenneker.Domainr.Util 3.0.7

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.7
                    
NuGet\Install-Package Soenneker.Domainr.Util -Version 3.0.7
                    
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.7" />
                    
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.7" />
                    
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.7
                    
#r "nuget: Soenneker.Domainr.Util, 3.0.7"
                    
#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.7
                    
Install Soenneker.Domainr.Util as a Cake Addin
#tool nuget:?package=Soenneker.Domainr.Util&version=3.0.7
                    
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 153 15 days ago
3.0.165 155 15 days ago
3.0.164 146 15 days ago
3.0.163 148 15 days ago
3.0.162 142 16 days ago
3.0.161 150 16 days ago
3.0.160 145 16 days ago
3.0.159 152 16 days ago
3.0.158 147 16 days ago
3.0.157 142 16 days ago
3.0.156 149 16 days ago
3.0.155 129 16 days ago
3.0.154 149 16 days ago
3.0.153 148 16 days ago
3.0.152 145 16 days ago
3.0.151 144 16 days ago
3.0.150 150 16 days ago
3.0.149 140 17 days ago
3.0.148 143 17 days ago
3.0.147 140 17 days ago
3.0.146 147 17 days ago
3.0.145 137 17 days ago
3.0.144 150 17 days ago
3.0.143 148 17 days ago
3.0.142 139 17 days ago
3.0.141 143 17 days ago
3.0.140 141 17 days ago
3.0.139 136 17 days ago
3.0.138 141 17 days ago
3.0.137 141 17 days ago
3.0.136 144 17 days ago
3.0.135 141 17 days ago
3.0.134 148 17 days ago
3.0.133 148 17 days ago
3.0.132 149 17 days ago
3.0.131 147 17 days ago
3.0.130 145 17 days ago
3.0.129 141 17 days ago
3.0.128 145 17 days ago
3.0.127 134 17 days ago
3.0.126 140 17 days ago
3.0.125 141 18 days ago
3.0.124 143 18 days ago
3.0.123 142 18 days ago
3.0.122 142 18 days ago
3.0.121 144 18 days ago
3.0.120 148 18 days ago
3.0.119 143 18 days ago
3.0.118 146 18 days ago
3.0.117 147 18 days ago
3.0.116 140 18 days ago
3.0.115 143 18 days ago
3.0.114 144 18 days ago
3.0.113 136 18 days ago
3.0.112 138 18 days ago
3.0.111 141 18 days ago
3.0.110 148 18 days ago
3.0.109 144 18 days ago
3.0.108 141 18 days ago
3.0.107 117 18 days ago
3.0.106 119 18 days ago
3.0.105 116 18 days ago
3.0.104 120 18 days ago
3.0.103 119 18 days ago
3.0.102 120 18 days ago
3.0.101 121 18 days ago
3.0.100 90 19 days ago
3.0.99 86 19 days ago
3.0.98 88 19 days ago
3.0.97 93 19 days ago
3.0.96 81 19 days ago
3.0.95 88 19 days ago
3.0.94 97 19 days ago
3.0.93 96 19 days ago
3.0.92 87 19 days ago
3.0.91 90 19 days ago
3.0.90 65 19 days ago
3.0.89 65 19 days ago
3.0.88 66 19 days ago
3.0.87 69 19 days ago
3.0.86 67 19 days ago
3.0.85 72 19 days ago
3.0.84 67 20 days ago
3.0.83 75 20 days ago
3.0.82 68 20 days ago
3.0.81 83 20 days ago
3.0.80 122 21 days ago
3.0.79 121 21 days ago
3.0.78 133 21 days ago
3.0.77 139 21 days ago
3.0.76 140 21 days ago
3.0.75 143 22 days ago
3.0.74 138 23 days ago
3.0.73 131 23 days ago
3.0.72 145 23 days ago
3.0.71 137 23 days ago
3.0.70 136 23 days ago
3.0.69 131 23 days ago
3.0.68 140 23 days ago
3.0.67 144 23 days ago
3.0.66 133 23 days ago
3.0.65 143 24 days ago
3.0.64 142 24 days ago
3.0.63 148 24 days ago
3.0.62 133 24 days ago
3.0.61 140 24 days ago
3.0.60 146 24 days ago
3.0.59 132 24 days ago
3.0.58 139 24 days ago
3.0.57 148 24 days ago
3.0.56 140 24 days ago
3.0.55 148 24 days ago
3.0.54 144 24 days ago
3.0.53 140 25 days ago
3.0.52 125 a month ago
3.0.51 126 a month ago
3.0.50 60 a month ago
3.0.49 61 a month ago
3.0.48 63 a month ago
3.0.47 69 a month ago
3.0.46 67 a month ago
3.0.45 73 a month ago
3.0.44 112 a month ago
3.0.43 110 a month ago
3.0.42 110 a month ago
3.0.41 110 a month ago
3.0.40 115 a month ago
3.0.39 442 a month ago
3.0.38 444 a month ago
3.0.37 442 a month ago
3.0.36 442 a month ago
3.0.35 443 a month ago
3.0.34 444 a month ago
3.0.33 445 a month ago
3.0.32 456 a month ago
3.0.31 450 a month ago
3.0.30 80 a month ago
3.0.29 59 a month ago
3.0.28 60 a month ago
3.0.27 67 a month ago
3.0.26 79 a month ago
3.0.25 83 a month ago
3.0.24 101 a month ago
3.0.23 100 a month ago
3.0.22 112 a month ago
3.0.21 110 a month ago
3.0.20 126 a month ago
3.0.19 131 a month ago
3.0.18 130 a month ago
3.0.17 131 a month ago
3.0.16 130 a month ago
3.0.15 127 a month ago
3.0.14 127 a month ago
3.0.13 130 a month ago
3.0.12 128 a month ago
3.0.11 127 a month ago
3.0.10 135 a month ago
3.0.9 127 a month ago
3.0.8 133 a month ago
3.0.7 130 a month ago
3.0.6 127 a month ago
3.0.5 129 a month ago
3.0.4 124 a month ago
3.0.3 121 a month ago
3.0.2 60 a month ago
3.0.1 60 a month ago