Skip to content

Go SDK

The Go SDK supports programmatic access to Axis APIs.

Authentication

Set your API key via environment variable.

export VELIKEY_API_KEY="<your-api-key>"

Example

package main

import (
  "fmt"
  "os"
)

func main() {
  apiKey := os.Getenv("VELIKEY_API_KEY")
  if apiKey == "" {
    panic("VELIKEY_API_KEY is required")
  }

  // TODO: Replace with the actual SDK client once the SDK reference is finalized.
  fmt.Println("SDK initialized")
}