View Source Domainr (Domainr v0.0.2)

HTTP Client for Domainr API.

This module provides functions to interact with the Domainr API, including searching for domain names and checking their status.

Examples

iex> Domainr.get!("/v2/status?domain=example.com")
%{"status" => [...]}

iex> Domainr.get!("/v2/search?query=acme+cafe")
%{"results" => [...]}

Summary

Functions

Makes a GET request to the given URL and processes the response.

Functions

get!(url)

Makes a GET request to the given URL and processes the response.

Examples

iex> Domainr.get!("/v2/status?domain=example.com")
%{"status" => [...]}

iex> Domainr.get!("/v2/search?query=acme+cafe")
%{"results" => [...]}

key()