This a very simple wrapper to use for the blob build api.
Its as simple as initalizing a new client and just accessing the methods.
BlobClient client = BlobAPI.newClient(TOKEN);
Note that TOKEN can be null when calling endpoints that require no authorization. (eg. projects list)
The methods are pretty self explanitory. (I will add javadocs) They all are ran asynchronously using the HttpClient and return CompletableFuture.
client.getProjects().join(); // blocks thread
client.getProjects().whenComplete((response, ex) -> {}); // does not block
If you need help ask on the discord: https://discord.gg/RJsVvVd