Using go-genai with googleapis.com

Go integration

✓ Official SDK
Install
go get github.com/googleapis/go-genai
Quick start
import "go-genai"

// Initialize client
client := go-genai.NewClient("YOUR_ACCESS_TOKEN")
Gets a single entity row matching the entity type and entity id specified in …
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{name}
Gets the schema of all the actions supported by the connector.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/actions
Lists entity rows of a particular entity type contained in the request. Note:…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://connectors.googleapis.com/v2/{parent}/entities
SDK on GitHub 📄 API Docs
SDK
go-genai
Go
API
googleapis.com
googleapis.com:connectors
At a glance
Language Go
Endpoints11
Base URLhttps://connectors.googleapis.com
✓ Official