> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apitally.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Go SDK reference

> Overview of the Apitally SDK for Go.

<CardGroup cols={2}>
  <Card title="GitHub repository" icon="github" href="https://github.com/apitally/apitally-go" target="_blank">
    apitally/apitally-go
  </Card>
</CardGroup>

## Installation

The Apitally SDK for Go is published as individual packages for each supported framework.

```shell theme={null}
go get github.com/apitally/apitally-go/{yourFramework}
```

Replace the `{yourFramework}` placeholder with the name of your framework. The options are:

* `chi`
* `echo`
* `fiber`
* `gin`

## Supported frameworks

The Go SDK currently supports the web frameworks listed below. If your framework is not listed, please [let us know](/support) and we'll consider adding support for it.

Click on a framework for a detailed setup guide.

<CardGroup cols={3}>
  <Card
    title="Chi"
    icon={
  <img
    src="https://assets.apitally.io/frameworks/chi-icon.svg"
    style={{ height: "32px", maxWidth: "unset", margin: 0 }}
    alt="Chi icon"
  />
}
    href="/setup-guides/chi"
  />

  <Card
    title="Echo"
    icon={
  <img
    src="https://assets.apitally.io/frameworks/echo-icon.svg"
    style={{ height: "32px", maxWidth: "unset", margin: 0 }}
    alt="Echo icon"
  />
}
    href="/setup-guides/echo"
  />

  <Card
    title="Fiber"
    icon={
  <img
    src="https://assets.apitally.io/frameworks/fiber-icon.svg"
    style={{ height: "32px", maxWidth: "unset", margin: 0 }}
    alt="Fiber icon"
  />
}
    href="/setup-guides/fiber"
  />

  <Card
    title="Gin"
    icon={
  <img
    src="https://assets.apitally.io/frameworks/gin-icon.svg"
    style={{ height: "32px", maxWidth: "unset", margin: 0 }}
    alt="Gin icon"
  />
}
    href="/setup-guides/gin"
  />
</CardGroup>
