Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

DomScan Ruby SDK

Official Ruby client for the DomScan API.

This SDK is generated from the shared endpoint manifest in this repository and covers the same 79 public non-session endpoints as the other official DomScan SDKs.

Installation

bundle add domscan-sdk

Quick Start

require "domscan"

client = DomScan::Client.new
response = client.availability.check_domain_availability(
  "name" => "launch",
  "tlds" => ["com", "io", "ai"],
  "prefer_cache" => true
)

puts response

Resources