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")
Looks up a single pipeline. Returns a "NOT_FOUND" error if no such pipeline e…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{name}
Lists jobs for a given pipeline. Throws a "FORBIDDEN" error if the caller doe…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{parent}/jobs
Lists pipelines. Returns a "FORBIDDEN" error if the caller doesn't have permi…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://datapipelines.googleapis.com/v1/{parent}/pipelines
SDK on GitHub 📄 API Docs
SDK
go-genai
Go
API
googleapis.com
googleapis.com:datapipelines
At a glance
Language Go
Endpoints8
Base URLhttps://datapipelines.googleapis.com
✓ Official