Using go-sdk with configcat.com

Go integration

✓ Official SDK
Install
go get github.com/configcat/go-sdk
Quick start
import "go-sdk"

// Initialize client
client := go-sdk.NewClient("YOUR_API_KEY")
Get authenticated user details
curl \
  -u "$API_USER:$API_PASS" \
  https://api.configcat.com/v1/me
List Products
curl \
  -u "$API_USER:$API_PASS" \
  https://api.configcat.com/v1/products
Get Tag
curl \
  -u "$API_USER:$API_PASS" \
  https://api.configcat.com/v1/tags/{tagId}
SDK on GitHub 📄 API Docs
SDK
go-sdk
Go
API
configcat.com
configcat.com
At a glance
Language Go
Endpoints62
Base URLhttps://api.configcat.com
✓ Official