In a backend Java environment, you can use the 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:
pom.xml
<dependency>
    <groupId>io.privy.api</groupId>
    <artifactId>privy-java</artifactId>
    <version>X.Y.Z</version>
</dependency>
X.Y.Z is the version of the library you want to use. Check out our latest version here.