Authentication requires a key, which can be acquired by sending an email to [email protected]. You will need to include your encoded key in every request.
Using BASIC authentication.
All request should contain the following header.
Authorization: Basic apiKey
byte[] authEncBytes = Base64.encodeBase64("2".getBytes());
String authStringEnc = new String(authEncBytes);