Go SDK
The Go module is github.com/spatialflow-io/spatialflow-go. It needs Go 1.21 or later, and its source is in the spatialflow-go repository.
The SDK's own version constant says v1.1.0, but its CHANGELOG hasn't recorded a release past v0.1.0; the two don't agree yet. Check the CHANGELOG directly for what has actually shipped.
Install
go get github.com/spatialflow-io/spatialflow-go
Create a client
client, err := spatialflow.NewClient(
spatialflow.WithAPIKey(os.Getenv("SPATIALFLOW_API_KEY")),
)
if err != nil {
log.Fatal(err)
}
Import the package as github.com/spatialflow-io/spatialflow-go/spatialflow. Create the key under Settings > API Keys and give it permission for each resource the client uses. See Authentication and API keys.