Namesilo
Go library for accessing the Namesilo API.
Install / Use
/learn @nrdcg/NamesiloREADME
Go library for accessing the Namesilo API
A Namesilo API client written in Go.
namesilo is a Go client library for accessing the Namesilo API.
Examples
package main
import (
"context"
"fmt"
"log"
"github.com/nrdcg/namesilo"
)
func main() {
client := namesilo.NewClient("1234")
params := &namesilo.AddAccountFundsParams{
Amount: "1000000",
PaymentID: "acbd",
}
funds, err := client.AddAccountFunds(context.Background(), params)
if err != nil {
log.Fatal(err)
}
fmt.Println(funds)
}
package main
import (
"context"
"fmt"
"log"
"github.com/nrdcg/namesilo"
)
func main() {
client := namesilo.NewClient("1234")
// Get the endpoint to use the OTE endpoint.
endpoint, err := namesilo.GetEndpoint(false, true)
if err != nil {
log.Fatal(err)
}
client.Endpoint = endpoint
params := &namesilo.AddAccountFundsParams{
Amount: "1000000",
PaymentID: "acbd",
}
funds, err := client.AddAccountFunds(context.Background(), params)
if err != nil {
log.Fatal(err)
}
fmt.Println(funds)
}
API Documentation
Related Skills
node-connect
347.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
xurl
347.0kA CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.
frontend-design
107.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
