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

> Install the Privy Go server SDK for backend wallet management, user authentication, and transaction signing.

# Installation

In a backend Go environment, you can use the
[`github.com/privy-io/go-sdk`](https://pkg.go.dev/github.com/privy-io/go-sdk) library
to authorize requests and manage your application from your server.
This library enables interacting with Privy's API to query and create users, create wallets, send
assets, and more.

Add the Privy Go SDK to your project using `go get`:

```bash theme={"system"}
go get github.com/privy-io/go-sdk
```

<Info>The Privy Go SDK requires Go 1.23 or later.</Info>

## Next steps

<CardGroup cols={2}>
  <Card title="Setup" icon="gear" href="/basics/go/setup">
    Configure the Privy client with app credentials and authorization context.
  </Card>

  <Card title="Quickstart" icon="rocket" href="/basics/go/quickstart">
    Create wallets, sign messages, and send transactions with the Go SDK.
  </Card>
</CardGroup>
