Retrofit: multiple query parameters in @GET command?
You should be using this syntax: @GET(“/my/API/call”) Response getMyThing( @Query(“param1”) String param1, @Query(“param2”) String param2); Specifying query parameters in the URL is only for when you know both the key and value and they are fixed.