The official WhoisFreaks Go SDK — a complete client for WHOIS, DNS, SSL, domain availability, subdomain, IP geolocation, IP reputation, ASN, typosquatting, and domain reputation lookups, plus bulk database downloads. Query real-time and historical domain data, reverse WHOIS, and threat intelligence from Go with a single API key. Generated from the WhoisFreaks OpenAPI specification and published to Go modules.
Keywords: go whois api, go whois sdk, whoisfreaks go, go domain lookup, go dns api, whois api, whois lookup, domain api, dns api, dns lookup, reverse whois, historical whois, domain availability api, ssl certificate api, ip geolocation api, ip reputation api, asn lookup, subdomain finder, typosquatting api, domain reputation, threat intelligence api, domain data api, whois sdk, domain monitoring, brand protection api
- Registry: Go modules
- Package:
github.com/WhoisFreaks/whoisfreaks-go
go get github.com/WhoisFreaks/whoisfreaks-goPrefer to build the SDK yourself instead of installing from Go modules? Clone the monorepo and build the Go package locally:
git clone https://github.com/WhoisFreaks/whoisfreaks-go
cd whoisfreaks-go
go build ./... # or import the module path directlyA complete walkthrough from an empty directory to a running program:
mkdir whoisfreaks-test && cd whoisfreaks-test
go mod init whoisfreaks-test # creates go.mod (required)
go get github.com/WhoisFreaks/whoisfreaks-goNote:
go getonly works inside a module. If you see 'go.mod file not found', rungo mod init <name>first (as above).
Create main.go:
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.WhoisLive(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}Run it:
go mod tidy
go run main.goSee Authentication for how to obtain a key. Minimal setup:
// Runnable example: Live WHOIS Lookup (GET /v2.0/whois/live)
// Parameters for whoisLive (GET /v2.0/whois/live):
// - domainName (string, required)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.WhoisLive(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}All 60 endpoints are shown below, grouped by category. Each includes its method, path, parameters, and a runnable example. See the full endpoint reference for response shapes and field details.
GET /v2.0/whois/live
// Runnable example: Live WHOIS Lookup (GET /v2.0/whois/live)
// Parameters for whoisLive (GET /v2.0/whois/live):
// - domainName (string, required)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.WhoisLive(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}POST /v2.0/bulkwhois/live
// Runnable example: Bulk WHOIS Lookup (POST /v2.0/bulkwhois/live)
// Parameters for bulkWhois (POST /v2.0/bulkwhois/live):
// - format (string (one of: json, xml), optional)
// - body: BulkWhoisRequest (required) -- request body object
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.BulkWhois(ctx).BulkWhoisRequest(*wf.NewBulkWhoisRequest()).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/whois/history
// Runnable example: Historical WHOIS records for a domain (GET /v2.0/whois/history)
// Parameters for whoisHistory (GET /v2.0/whois/history):
// - domainName (string, required): Domain to fetch historical WHOIS records for
// - page (integer, optional): Page number
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.WhoisHistory(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/whois/reverse
// Runnable example: Reverse WHOIS lookup by keyword (GET /v2.0/whois/reverse)
// Parameters for whoisReverse (GET /v2.0/whois/reverse):
// - keyword (string, required): Keyword to search across WHOIS records
// - page (integer, optional): Page number
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.WHOISAPI.WhoisReverse(ctx).Keyword("value").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/dns/live
// Runnable example: Live DNS Lookup (GET /v2.0/dns/live)
// Parameters for dnsLive (GET /v2.0/dns/live):
// - domainName (string, required)
// - ipAddress (string, required): Use for PTR lookups
// - type (string, required): all or comma-separated: A,MX,NS,TXT,SOA,SPF,AAAA,CNAME
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DNSAPI.DnsLive(ctx).DomainName("example.com").IpAddress("8.8.8.8").Type("value").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/dns/historical
// Runnable example: Historical DNS Lookup (GET /v2.0/dns/historical)
// Parameters for dnsHistorical (GET /v2.0/dns/historical):
// - domainName (string, required)
// - type (string, required)
// - page (integer, optional)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DNSAPI.DnsHistorical(ctx).DomainName("example.com").Type("value").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.1/dns/reverse
// Runnable example: Reverse DNS Lookup (GET /v2.1/dns/reverse)
// Parameters for dnsReverse (GET /v2.1/dns/reverse):
// - value (string, required): IP, CIDR, or record value
// - type (string (one of: a, mx, cname, ns, aaaa, txt, soa), required)
// - exact (boolean, optional)
// - page (integer, optional)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DNSAPI.DnsReverse(ctx).Value("value").Type("a").Exact(true).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}POST /v2.0/dns/bulk/live
// Runnable example: Bulk DNS Lookup (POST /v2.0/dns/bulk/live)
// Parameters for dnsBulk (POST /v2.0/dns/bulk/live):
// - type (string, required)
// - format (string (one of: json, xml), optional)
// - body: DnsBulkRequest (required) -- request body object
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DNSAPI.DnsBulk(ctx).Type("value").DnsBulkRequest(*wf.NewDnsBulkRequest()).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/domain/availability
// Runnable example: Domain Availability Check with Suggestions (GET /v2.0/domain/availability)
// Parameters for domainAvailabilityV2 (GET /v2.0/domain/availability):
// - domain (string, required): The domain name to check
// - sug (boolean, optional): Whether to return TLD suggestions alongside the queried domain.
// - count (integer, optional): Number of TLD suggestions to return when sug=true. Maximum is 100.
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DomainAvailabilityAPI.DomainAvailabilityV2(ctx).Domain("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}POST /v2.0/domain/availability
// Runnable example: Bulk Domain Availability Check (POST /v2.0/domain/availability)
// Parameters for bulkDomainAvailabilityV2 (POST /v2.0/domain/availability):
// - domain (string, optional): Required for TLD-mode bulk check (base domain).
// - format (string (one of: json, xml), optional)
// - body: BulkDomainAvailabilityRequest (required) -- request body object
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DomainAvailabilityAPI.BulkDomainAvailabilityV2(ctx).BulkDomainAvailabilityRequest(*wf.NewBulkDomainAvailabilityRequest()).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.0/domain/typos
// Runnable example: Typosquatting Lookup (GET /v3.0/domain/typos)
// Parameters for typosquatting (GET /v3.0/domain/typos):
// - keyword (string, optional)
// - pattern (string, optional)
// - pageToken (string, optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.TyposquattingAPI.Typosquatting(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/ssl/live
// Runnable example: SSL Certificate Lookup (GET /v1.0/ssl/live)
// Parameters for sslLookup (GET /v1.0/ssl/live):
// - domainName (string, required)
// - chain (boolean, optional)
// - sslRaw (boolean, optional)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.SSLAPI.SslLookup(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/geolocation
// Runnable example: IP Geolocation Lookup (GET /v1.0/geolocation)
// Parameters for geolocation (GET /v1.0/geolocation):
// - ip (string, required)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.GeolocationAPI.Geolocation(ctx).Ip("8.8.8.8").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}POST /v1.0/geolocation
// Runnable example: Bulk IP Geolocation (POST /v1.0/geolocation)
// Parameters for bulkGeolocation (POST /v1.0/geolocation):
// - body: BulkGeolocationRequest (required) -- request body object
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.GeolocationAPI.BulkGeolocation(ctx).BulkGeolocationRequest(*wf.NewBulkGeolocationRequest()).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/subdomains
// Runnable example: Subdomains Lookup (GET /v1.0/subdomains)
// Parameters for subdomains (GET /v1.0/subdomains):
// - domain (string, required)
// - after (string, optional)
// - before (string, optional)
// - status (string (one of: active, inactive), optional)
// - page (integer, optional)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.SubdomainsAPI.Subdomains(ctx).Domain("example.com").After("2000-01-01").Before(time.Now().Format("2006-01-02")).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/security
// Runnable example: IP Reputation Lookup (GET /v1.0/security)
// Parameters for ipReputation (GET /v1.0/security):
// - ip (string, required)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.IPReputationAPI.IpReputation(ctx).Ip("8.8.8.8").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}POST /v1.0/security
// Runnable example: Bulk IP Reputation (POST /v1.0/security)
// Parameters for bulkIpReputation (POST /v1.0/security):
// - body: BulkIpReputationRequest (required) -- request body object
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.IPReputationAPI.BulkIpReputation(ctx).BulkIpReputationRequest(*wf.NewBulkIpReputationRequest()).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1/domain/security
// Runnable example: Domain Reputation Lookup (GET /v1/domain/security)
// Parameters for domainReputation (GET /v1/domain/security):
// - domainName (string, required): The domain name to assess
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DomainReputationAPI.DomainReputation(ctx).DomainName("example.com").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v2.0/asn-whois
// Runnable example: ASN WHOIS Lookup (GET /v2.0/asn-whois)
// Parameters for asnWhois (GET /v2.0/asn-whois):
// - asn (string, required)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.ASNWHOISAPI.AsnWhois(ctx).Asn("AS15169").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/ip-whois
// Runnable example: IP WHOIS Lookup (GET /v1.0/ip-whois)
// Parameters for ipWhois (GET /v1.0/ip-whois):
// - ip (string, required)
// - format (string (one of: json, xml), optional)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.IPWHOISAPI.IpWhois(ctx).Ip("8.8.8.8").Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/api-key/rotate
// Runnable example: Rotate API Key (GET /v1.0/api-key/rotate)
// Parameters for rotateApiKey (GET /v1.0/api-key/rotate):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.AccountAPI.RotateApiKey(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v1.0/whoisapi/usage
// Runnable example: Account Usage (GET /v1.0/whoisapi/usage)
// Parameters for accountUsage (GET /v1.0/whoisapi/usage):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.AccountAPI.AccountUsage(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.4/status
// Runnable example: Database File Status (Public) (GET /v3.4/status)
// Parameters for databaseFileStatus (GET /v3.4/status):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.AccountAPI.DatabaseFileStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.1/download/domainer/gtld
// Runnable example: Newly Registered gTLD (CSV) (GET /v3.1/download/domainer/gtld)
// Parameters for dbNewlyGtld (GET /v3.1/download/domainer/gtld):
// - whois (boolean, required)
// - date (string, optional): yyyy-MM-dd; omit for latest
// - tlds (string, optional)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyGtld(ctx).Whois(false).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbNewlyGtld.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbNewlyGtld.gz\n", len(data))
}GET /v3.1/download/domainer/cctld
// Runnable example: Newly Registered ccTLD (CSV) (GET /v3.1/download/domainer/cctld)
// Parameters for dbNewlyCctld (GET /v3.1/download/domainer/cctld):
// - whois (boolean, required)
// - date (string, optional): yyyy-MM-dd; omit for latest
// - tlds (string, optional)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyCctld(ctx).Whois(false).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbNewlyCctld.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbNewlyCctld.gz\n", len(data))
}GET /v3.1/download/domainer/gtld/cleaned
// Runnable example: Newly Registered gTLD Cleaned WHOIS (CSV) (GET /v3.1/download/domainer/gtld/cleaned)
// Parameters for dbNewlyGtldCleaned (GET /v3.1/download/domainer/gtld/cleaned):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyGtldCleaned(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbNewlyGtldCleaned.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbNewlyGtldCleaned.gz\n", len(data))
}GET /v3.1/download/domainer/cctld/cleaned
// Runnable example: Newly Registered ccTLD Cleaned WHOIS (CSV) (GET /v3.1/download/domainer/cctld/cleaned)
// Parameters for dbNewlyCctldCleaned (GET /v3.1/download/domainer/cctld/cleaned):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyCctldCleaned(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbNewlyCctldCleaned.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbNewlyCctldCleaned.gz\n", len(data))
}GET /v3.1/domains/newly/gtld
// Runnable example: Newly Registered gTLD (JSON) (GET /v3.1/domains/newly/gtld)
// Parameters for dbNewlyGtldJson (GET /v3.1/domains/newly/gtld):
// - date (string, optional): yyyy-MM-dd; omit for latest
// - tlds (string, optional)
package main
import (
"context"
"encoding/json"
"fmt"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyGtldJson(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.1/domains/newly/cctld
// Runnable example: Newly Registered ccTLD (JSON) (GET /v3.1/domains/newly/cctld)
// Parameters for dbNewlyCctldJson (GET /v3.1/domains/newly/cctld):
// - date (string, optional): yyyy-MM-dd; omit for latest
// - tlds (string, optional)
package main
import (
"context"
"encoding/json"
"fmt"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyCctldJson(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.1/download/domainer/newly/dns
// Runnable example: Newly Registered With DNS (GET /v3.1/download/domainer/newly/dns)
// Parameters for dbNewlyDns (GET /v3.1/download/domainer/newly/dns):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesNewlyRegisteredAPI.DbNewlyDns(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbNewlyDns.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbNewlyDns.gz\n", len(data))
}GET /v3.1/download/domainer/expired
// Runnable example: Expiring Domains (GET /v3.1/download/domainer/expired)
// Parameters for dbExpired (GET /v3.1/download/domainer/expired):
// - whois (boolean, required)
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesExpiringDroppedAPI.DbExpired(ctx).Whois(false).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbExpired.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbExpired.gz\n", len(data))
}GET /v3.1/download/domainer/expired/cleaned
// Runnable example: Expiring Cleaned WHOIS (GET /v3.1/download/domainer/expired/cleaned)
// Parameters for dbExpiredCleaned (GET /v3.1/download/domainer/expired/cleaned):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesExpiringDroppedAPI.DbExpiredCleaned(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbExpiredCleaned.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbExpiredCleaned.gz\n", len(data))
}GET /v3.1/download/domainer/dropped
// Runnable example: Dropped Domains (GET /v3.1/download/domainer/dropped)
// Parameters for dbDropped (GET /v3.1/download/domainer/dropped):
// - whois (boolean, required)
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesExpiringDroppedAPI.DbDropped(ctx).Whois(false).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbDropped.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbDropped.gz\n", len(data))
}GET /v3.1/domains/dropped
// Runnable example: Dropped Domains (JSON) (GET /v3.1/domains/dropped)
// Parameters for dbDroppedJson (GET /v3.1/domains/dropped):
// - date (string, optional): yyyy-MM-dd; omit for latest
// - tlds (string, optional)
package main
import (
"context"
"encoding/json"
"fmt"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesExpiringDroppedAPI.DbDroppedJson(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.3/download/domainer/dropped/backlinks
// Runnable example: Dropped With Backlinks (GET /v3.3/download/domainer/dropped/backlinks)
// Parameters for dbDroppedBacklinks (GET /v3.3/download/domainer/dropped/backlinks):
// - whois (boolean, optional)
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesExpiringDroppedAPI.DbDroppedBacklinks(ctx).Whois(false).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbDroppedBacklinks.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbDroppedBacklinks.gz\n", len(data))
}GET /v3.3/download/dbupdate/daily/domains/whois
// Runnable example: WHOIS Database Daily (GET /v3.3/download/dbupdate/daily/domains/whois)
// Parameters for dbWhoisDaily (GET /v3.3/download/dbupdate/daily/domains/whois):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesWHOISAPI.DbWhoisDaily(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbWhoisDaily.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbWhoisDaily.gz\n", len(data))
}GET /v3.3/download/dbupdate/weekly/domains/whois
// Runnable example: WHOIS Database Weekly (GET /v3.3/download/dbupdate/weekly/domains/whois)
// Parameters for dbWhoisWeekly (GET /v3.3/download/dbupdate/weekly/domains/whois):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesWHOISAPI.DbWhoisWeekly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbWhoisWeekly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbWhoisWeekly.gz\n", len(data))
}GET /v3.3/download/dbupdate/monthly/domains/whois
// Runnable example: WHOIS Database Monthly (GET /v3.3/download/dbupdate/monthly/domains/whois)
// Parameters for dbWhoisMonthly (GET /v3.3/download/dbupdate/monthly/domains/whois):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesWHOISAPI.DbWhoisMonthly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbWhoisMonthly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbWhoisMonthly.gz\n", len(data))
}GET /v3.2/download/dbupdate/daily/dns
// Runnable example: DNS Database Daily (GET /v3.2/download/dbupdate/daily/dns)
// Parameters for dbDnsDaily (GET /v3.2/download/dbupdate/daily/dns):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesDNSAPI.DbDnsDaily(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbDnsDaily.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbDnsDaily.gz\n", len(data))
}GET /v3.2/download/dbupdate/weekly/dns
// Runnable example: DNS Database Weekly (GET /v3.2/download/dbupdate/weekly/dns)
// Parameters for dbDnsWeekly (GET /v3.2/download/dbupdate/weekly/dns):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesDNSAPI.DbDnsWeekly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbDnsWeekly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbDnsWeekly.gz\n", len(data))
}GET /v3.2/download/dbupdate/monthly/dns
// Runnable example: DNS Database Monthly (GET /v3.2/download/dbupdate/monthly/dns)
// Parameters for dbDnsMonthly (GET /v3.2/download/dbupdate/monthly/dns):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesDNSAPI.DbDnsMonthly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbDnsMonthly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbDnsMonthly.gz\n", len(data))
}GET /v3.2/download/dbupdate/daily/subdomains
// Runnable example: Subdomains Daily (GET /v3.2/download/dbupdate/daily/subdomains)
// Parameters for dbSubdomainsDaily (GET /v3.2/download/dbupdate/daily/subdomains):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesSubdomainsAPI.DbSubdomainsDaily(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbSubdomainsDaily.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbSubdomainsDaily.gz\n", len(data))
}GET /v3.2/download/dbupdate/weekly/subdomains
// Runnable example: Subdomains Weekly (GET /v3.2/download/dbupdate/weekly/subdomains)
// Parameters for dbSubdomainsWeekly (GET /v3.2/download/dbupdate/weekly/subdomains):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesSubdomainsAPI.DbSubdomainsWeekly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbSubdomainsWeekly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbSubdomainsWeekly.gz\n", len(data))
}GET /v3.2/download/dbupdate/monthly/subdomains
// Runnable example: Subdomains Monthly (GET /v3.2/download/dbupdate/monthly/subdomains)
// Parameters for dbSubdomainsMonthly (GET /v3.2/download/dbupdate/monthly/subdomains):
// - date (string, optional): yyyy-MM-dd; omit for latest
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesSubdomainsAPI.DbSubdomainsMonthly(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbSubdomainsMonthly.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbSubdomainsMonthly.gz\n", len(data))
}GET /v3.3/status/snapshot/ip/country
// Runnable example: IP to Country Snapshot Status (GET /v3.3/status/snapshot/ip/country)
// Parameters for dbIpCountryStatus (GET /v3.3/status/snapshot/ip/country):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesIPGeolocationAPI.DbIpCountryStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.3/download/snapshot/ip/country
// Runnable example: IP to Country Snapshot (GET /v3.3/download/snapshot/ip/country)
// Parameters for dbIpCountry (GET /v3.3/download/snapshot/ip/country):
// - date (string, required)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesIPGeolocationAPI.DbIpCountry(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbIpCountry.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbIpCountry.gz\n", len(data))
}GET /v3.3/status/snapshot/ip/city
// Runnable example: IP to City Snapshot Status (GET /v3.3/status/snapshot/ip/city)
// Parameters for dbIpCityStatus (GET /v3.3/status/snapshot/ip/city):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesIPGeolocationAPI.DbIpCityStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.3/download/snapshot/ip/city
// Runnable example: IP to City Snapshot (GET /v3.3/download/snapshot/ip/city)
// Parameters for dbIpCity (GET /v3.3/download/snapshot/ip/city):
// - date (string, required)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesIPGeolocationAPI.DbIpCity(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbIpCity.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbIpCity.gz\n", len(data))
}GET /v3.3/download/snapshot/asn/whois
// Runnable example: ASN WHOIS Snapshot (GET /v3.3/download/snapshot/asn/whois)
// Parameters for dbAsnWhois (GET /v3.3/download/snapshot/asn/whois):
// - date (string, required)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesASNWHOISAPI.DbAsnWhois(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbAsnWhois.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbAsnWhois.gz\n", len(data))
}GET /v3.3/status/snapshot/asn/whois
// Runnable example: ASN WHOIS Snapshot Status (GET /v3.3/status/snapshot/asn/whois)
// Parameters for dbAsnWhoisStatus (GET /v3.3/status/snapshot/asn/whois):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesASNWHOISAPI.DbAsnWhoisStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.3/download/snapshot/ip/whois
// Runnable example: IP WHOIS Snapshot (GET /v3.3/download/snapshot/ip/whois)
// Parameters for dbIpWhois (GET /v3.3/download/snapshot/ip/whois):
// - date (string, required)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesIPWHOISAPI.DbIpWhois(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbIpWhois.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbIpWhois.gz\n", len(data))
}GET /v3.3/status/snapshot/ip/whois
// Runnable example: IP WHOIS Snapshot Status (GET /v3.3/status/snapshot/ip/whois)
// Parameters for dbIpWhoisStatus (GET /v3.3/status/snapshot/ip/whois):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesIPWHOISAPI.DbIpWhoisStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.3/download/snapshot/ip/security
// Runnable example: IP Security Snapshot (GET /v3.3/download/snapshot/ip/security)
// Parameters for dbIpSecurity (GET /v3.3/download/snapshot/ip/security):
// - date (string, required)
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesIPSecurityAPI.DbIpSecurity(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("dbIpSecurity.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to dbIpSecurity.gz\n", len(data))
}GET /v3.3/status/snapshot/ip/security
// Runnable example: IP Security Snapshot Status (GET /v3.3/status/snapshot/ip/security)
// Parameters for dbIpSecurityStatus (GET /v3.3/status/snapshot/ip/security):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"encoding/json"
"fmt"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
result, _, err := client.DatabasesIPSecurityAPI.DbIpSecurityStatus(ctx).Execute()
if err != nil { panic(err) }
b, _ := json.MarshalIndent(result, "", " ")
fmt.Println(string(b))
}GET /v3.4/download/threat-feed/phishing
// Runnable example: Download the daily phishing threat feed (CSV) (GET /v3.4/download/threat-feed/phishing)
// Parameters for downloadThreatFeedPhishing (GET /v3.4/download/threat-feed/phishing):
// - date (string, optional): Feed date (yyyy-MM-dd); defaults to latest available
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedPhishing(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedPhishing.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedPhishing.gz\n", len(data))
}GET /v3.4/download/threat-feed/phishing/sample
// Runnable example: Download a sample of the phishing threat feed (CSV) (GET /v3.4/download/threat-feed/phishing/sample)
// Parameters for downloadThreatFeedPhishingSample (GET /v3.4/download/threat-feed/phishing/sample):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"fmt"
"os"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedPhishingSample(ctx).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedPhishingSample.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedPhishingSample.gz\n", len(data))
}GET /v3.4/download/threat-feed/malware
// Runnable example: Download the daily malware threat feed (CSV) (GET /v3.4/download/threat-feed/malware)
// Parameters for downloadThreatFeedMalware (GET /v3.4/download/threat-feed/malware):
// - date (string, optional): Feed date (yyyy-MM-dd); defaults to latest available
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedMalware(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedMalware.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedMalware.gz\n", len(data))
}GET /v3.4/download/threat-feed/malware/sample
// Runnable example: Download a sample of the malware threat feed (CSV) (GET /v3.4/download/threat-feed/malware/sample)
// Parameters for downloadThreatFeedMalwareSample (GET /v3.4/download/threat-feed/malware/sample):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"fmt"
"os"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedMalwareSample(ctx).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedMalwareSample.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedMalwareSample.gz\n", len(data))
}GET /v3.4/download/threat-feed/spam
// Runnable example: Download the daily spam threat feed (CSV) (GET /v3.4/download/threat-feed/spam)
// Parameters for downloadThreatFeedSpam (GET /v3.4/download/threat-feed/spam):
// - date (string, optional): Feed date (yyyy-MM-dd); defaults to latest available
package main
import (
"context"
"fmt"
"os"
"time"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedSpam(ctx).Date(time.Now().AddDate(0,0,-1).Format("2006-01-02")).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedSpam.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedSpam.gz\n", len(data))
}GET /v3.4/download/threat-feed/spam/sample
// Runnable example: Download a sample of the spam threat feed (CSV) (GET /v3.4/download/threat-feed/spam/sample)
// Parameters for downloadThreatFeedSpamSample (GET /v3.4/download/threat-feed/spam/sample):
// (no parameters; the API key is set on the client)
package main
import (
"context"
"fmt"
"os"
wf "github.com/WhoisFreaks/whoisfreaks-go"
)
func main() {
cfg := wf.NewConfiguration()
client := wf.NewAPIClient(cfg)
// apiKey is set once via the request context
ctx := context.WithValue(context.Background(), wf.ContextAPIKeys,
map[string]wf.APIKey{"ApiKeyAuth": {Key: "YOUR_API_KEY"}})
// returns raw bytes (compressed/binary file) -- write to disk
data, _, err := client.DatabasesThreatFeedAPI.DownloadThreatFeedSpamSample(ctx).Execute()
if err != nil { panic(err) }
if err := os.WriteFile("downloadThreatFeedSpamSample.gz", data, 0644); err != nil { panic(err) }
fmt.Printf("saved %d bytes to downloadThreatFeedSpamSample.gz\n", len(data))
}