> ## 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 Java server SDK for backend user authentication, wallet management, and token verification.

# Installation

In a backend Java environment, you can use the
[`io.privy.api:privy-java`](https://central.sonatype.com/artifact/io.privy.api/privy-java) library
to authorize requests and manage your application from your server.
This library enables interacting with Privy's API to query and creates users, create wallets, send
assets, and more.

The package is hosted on Maven Central, and can be pulled into your project through standard
Maven/Gradle/your chosen method. For example, with Maven, this should look like:

```xml title="pom.xml" theme={"system"}
<dependency>
    <groupId>io.privy.api</groupId>
    <artifactId>privy-java</artifactId>
    <version>X.Y.Z</version>
</dependency>
```

<Info>
  `X.Y.Z` is the version of the library you want to use. Check out our [latest version
  here](https://central.sonatype.com/artifact/io.privy.api/privy-java).
</Info>
