package ml.docilealligator.infinityforreddit.apis; import retrofit2.Call; import retrofit2.http.GET; import retrofit2.http.Path; public interface StreamableAPI { @GET("videos/{shortcode}") Call getStreamableData(@Path("shortcode") String shortCode); }