Robust and type-safe integration for the OrvexPay API. Built for high-availability systems using OkHttp and Gson.
Uses modern OkHttp 4 for efficient connection pooling, automatic retries, and high performance.
Write cleaner code with our fluent model builders. Easy to integrate into Spring Boot or Jakarta EE.
<dependency> <groupId>com.orvexpay</groupId> <artifactId>orvexpay-sdk</artifactId> <version>1.0.0</version> </dependency>
OrvexClient client = new OrvexClient("your-api-key");
InvoiceRequest request = new InvoiceRequest()
.setPriceAmount("100.00")
.setPriceCurrency("USD")
.setPayCurrency("USDT");
JsonObject invoice = client.createInvoice(request);
Check out the OrvexPay Java SDK source code on GitHub. Contributions are welcome!
View on GitHub