> ## 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.

# Installation

> Install the Privy Ruby server SDK (privy_ruby) for backend authentication, wallet management, and token verification

In a backend Ruby environment, you can use the [**`privy_ruby`**](https://github.com/privy-io/ruby-sdk) gem
to authorize requests and manage your application from your server.
This library includes helpful utilities around verifying access tokens issued by Privy and
interacting with Privy's API to query and create users, create wallets, send assets, and more.

Add the Privy Ruby SDK to your application's `Gemfile`:

```ruby Gemfile theme={"system"}
gem "privy_ruby", github: "privy-io/ruby-sdk", branch: "main"
```

Then install it via Bundler:

```bash theme={"system"}
bundle install
```

<Info>The Privy Ruby SDK requires Ruby 3.2.0 or later.</Info>

## Next steps

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

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