All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.truefx.TrueFxPublic Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.truefx;

import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import java.io.IOException;
import org.knowm.xchange.currency.CurrencyPair;
import org.knowm.xchange.truefx.dto.marketdata.TrueFxTicker;

@Path("")
public interface TrueFxPublic {
  @GET
  @Path("rates/connect.html?f=csv&c={pair}")
  TrueFxTicker getTicker(@PathParam("pair") CurrencyPair pair) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy