public interface ApiRequests { @POST("user/check") Call<JSONObject> login(@QueryMap Map<String, String> options); } Retrofit retrofit = new Retrofit.Builder() .baseUrl(API_SERVER_URL) .build(); ApiRequests api = retrofit.create(ApiRequests.class); Call call = api.login(params); call.enqueue(new Callback<JSONObject>() { @Override public void onResponse(Call<JSONObject> call, Response<JSONObject> response) { .... Error: Unable to create converter for class org.json.JSONObject but I don’t need a converter.