Using the convert endpoint, you may request the IpForensics API to perform a Single currency conversion on your behalf. e.g converting $500 Dollars to Naira
To use this endpoint, simply specify a from currency code, a to Currency Code, and the amount you would like to convert.
Each request to the currency conversion endpoint consumes 1 token.
var client = new RestClient("https://ipforensics.net/api/v1/currency/convert?apikey=IPF-36ae36a6-4a32-4fae-a422-e45e70b0a515-X&from=USD&to=NGN&amount=500");
client.Timeout=-1;var request =newRestRequest(Method.POST);IRestResponse response =client.Execute(request);Console.WriteLine(response.Content);