![JAR search and dependency download from the Maven repository](/logo.png)
io.blockfrost.sdk.impl.retrofit.NetworkApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blockfrost-java Show documentation
Show all versions of blockfrost-java Show documentation
Java SDK for the Blockfrost.io API
package io.blockfrost.sdk.impl.retrofit;
import io.blockfrost.sdk.api.model.Network;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Header;
public interface NetworkApi {
/**
* Blockchain network
* Return the information about network.
*
* @return Call<Network>
*/
@GET("network")
Call networkGet(@Header("project_id") String projectId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy