Skip to content

cryptickrisp/go-namecheap

Repository files navigation

go-namecheap

A Go library for using the Namecheap API.

Build Status: Build Status

Examples

package main
import (
  "fmt"
  namecheap "github.com/billputer/go-namecheap"
)

func main() {
  apiUser := "billwiens"
  apiToken := "xxxxxxx"
  userName := "billwiens"

  client := namecheap.NewClient(apiUser, apiToken, userName)

  // Get a list of your domains
  domains, _ := client.DomainsGetList()
  for _, domain := range domains {
    fmt.Printf("Domain: %+v\n\n", domain.Name)
  }

}

For more complete documentation, load up godoc and find the package.

Development

Pull requests welcome!

License

TBD, most concepts and code borrowed from http://github.com/rubyist/go-dnsimple

About

fork from github.com/billputer/go-namecheap

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages