// sdk · Go · coming soon
Go SDK — in developmentComing soon
Module `astroway-go` with built-in context.Context support and structs generated from OpenAPI 3.1.
// 01 / notify
Get notified at release
The Go SDK is auto-generated from our OpenAPI 3.1 spec on every release. Drop us your email and we'll notify you the day it ships.
Notify me by email →Or use one of the SDKs below available now:
// 02 / highlights
Highlights
- Native context.Context
- Auto-retry with backoff
- OpenAPI 3.1 codegen
- Connection pooling
- Zero deps beyond stdlib
// 03 / preview
What the API will look like
Preview · syntax may change before release
package main
import (
"fmt"
"os"
astroway "github.com/astroway/astroway-go"
)
func main() {
client := astroway.New(os.Getenv("AW_KEY"))
chart, _ := client.Chart.Create(astroway.ChartParams{
BirthDate: "1991-08-24T16:30:00+03:00",
Latitude: 50.4501,
Longitude: 30.5234,
HouseSystem: "placidus",
})
fmt.Println(chart.Planets.Sun)
} Get notified when Go SDK ships
Auto-generated from our OpenAPI 3.1 spec. Until Go ships, use one of our available SDKs below — they all hit the same backend.