Go interface to the SharedCount API.
Documentation is on Godoc.
API key available for free on the website. Set yourself up with a key then call methods to get data.
package main
import (
"fmt"
"go-sharedcount/sharedcount"
)
func main() {
key := &sharedcount.APIKey{Key: "myKeyGoesHere"} // setup
// Get API usage
quota := key.GetURL("https://golang.org")
fmt.Println(quota)
}