Call2Me
Go SDK

Go SDK for voice AI

Install in one line, create agents, place calls, manage knowledge bases — all from Go.

go get github.com/call2me-app/go-sdk
example.go
package main

import (
    "fmt"
    call2me "github.com/call2me-app/go-sdk"
)

func main() {
    client := call2me.New("sk_call2me_...")

    agents, _ := client.Agents.List()
    for _, a := range agents {
        fmt.Println(a["agent_name"])
    }

    calls, _ := client.Calls.List()
    fmt.Printf("Total calls: %d\n", len(calls))
}

Start Building

$10 free credits. No credit card required.