Run this command to install the SDK:
npm install cloudmersive-currency-api-client --save
Or add this snippet to your package.json:
"dependencies": { "cloudmersive-currency-api-client": "^1.2.0" }
Run this command to install the SDK:
npm install cloudmersive-currency-api-client --save
Or add this snippet to your package.json:
"dependencies": { "cloudmersive-currency-api-client": "^1.2.0" }
var CloudmersiveCurrencyApiClient = require('cloudmersive-currency-api-client');
var defaultClient = CloudmersiveCurrencyApiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
var apiInstance = new CloudmersiveCurrencyApiClient.CurrencyExchangeApi();
var source = "source_example"; // String | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
var destination = "destination_example"; // String | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.currencyExchangeGetExchangeRate(source, destination, callback);
Run this command to install the SDK:
pip install cloudmersive-currency-api-client
from __future__ import print_function
import time
import cloudmersive_currency_api_client
from cloudmersive_currency_api_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: Apikey
configuration = cloudmersive_currency_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# create an instance of the API class
api_instance = cloudmersive_currency_api_client.CurrencyExchangeApi(cloudmersive_currency_api_client.ApiClient(configuration))
source = 'source_example' # str | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
destination = 'destination_example' # str | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
try:
# Gets the exchange rate from the source currency into the destination currency
api_response = api_instance.currency_exchange_get_exchange_rate(source, destination)
pprint(api_response)
except ApiException as e:
print("Exception when calling CurrencyExchangeApi->currency_exchange_get_exchange_rate: %s\n" % e)
Run this command to install the SDK:
Run this command to install the SDK:
Install-Package Cloudmersive.APIClient.NETCore.Currency -Version 2.0.1
using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NETCore.Currency.Api;
using Cloudmersive.APIClient.NETCore.Currency.Client;
using Cloudmersive.APIClient.NETCore.Currency.Model;
namespace Example
{
public class CurrencyExchangeGetExchangeRateExample
{
public void main()
{
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
var apiInstance = new CurrencyExchangeApi();
var source = source_example; // string | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
var destination = destination_example; // string | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
try
{
// Gets the exchange rate from the source currency into the destination currency
ExchangeRateResult result = apiInstance.CurrencyExchangeGetExchangeRate(source, destination);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CurrencyExchangeApi.CurrencyExchangeGetExchangeRate: " + e.Message );
}
}
}
}
To install with Maven, add a reference to the repository in pom.xml:
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
And add a reference to the dependency in pom.xml:
<dependencies> <dependency> <groupId>com.github.Cloudmersive</groupId> <artifactId>Cloudmersive.APIClient.Java</artifactId> <version>v4.25</version> </dependency> </dependencies>
To install with Gradle, add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
And add the dependency in build.gradle:
dependencies { implementation 'com.github.Cloudmersive:Cloudmersive.APIClient.Java:v4.25' }
// Import classes:
//import com.cloudmersive.client.invoker.ApiClient;
//import com.cloudmersive.client.invoker.ApiException;
//import com.cloudmersive.client.invoker.Configuration;
//import com.cloudmersive.client.invoker.auth.*;
//import com.cloudmersive.client.CurrencyExchangeApi;
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) defaultClient.getAuthentication("Apikey");
Apikey.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.setApiKeyPrefix("Token");
CurrencyExchangeApi apiInstance = new CurrencyExchangeApi();
String source = "source_example"; // String | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
String destination = "destination_example"; // String | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
try {
ExchangeRateResult result = apiInstance.currencyExchangeGetExchangeRate(source, destination);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CurrencyExchangeApi#currencyExchangeGetExchangeRate");
e.printStackTrace();
}
Run this command to install the SDK:
composer require cloudmersive/cloudmersive_currency_api_client
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Apikey
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY');
$apiInstance = new Swagger\Client\Api\CurrencyExchangeApi(
new GuzzleHttp\Client(),
$config
);
$source = "source_example"; // string | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
$destination = "destination_example"; // string | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
try {
$result = $apiInstance->currencyExchangeGetExchangeRate($source, $destination);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CurrencyExchangeApi->currencyExchangeGetExchangeRate: ', $e->getMessage(), PHP_EOL;
}
?>
Add the Objective-C client to your Podfile:
Add the Ruby client to your Gemfile:
gem 'cloudmersive-currency-api-client', '~> 1.7.8'
# load the gem
require 'cloudmersive-currency-api-client'
# setup authorization
CloudmersiveCurrencyApiClient.configure do |config|
# Configure API key authorization: Apikey
config.api_key['Apikey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Apikey'] = 'Bearer'
end
api_instance = CloudmersiveCurrencyApiClient::CurrencyExchangeApi.new
source = 'source_example' # String | Source currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
destination = 'destination_example' # String | Destination currency three-digit code (ISO 4217), e.g. USD, EUR, etc.
begin
#Gets the exchange rate from the source currency into the destination currency
result = api_instance.currency_exchange_get_exchange_rate(source, destination)
p result
rescue CloudmersiveCurrencyApiClient::ApiError => e
puts "Exception when calling CurrencyExchangeApi->currency_exchange_get_exchange_rate: #{e}"
end
SwagCurrencyExchangeApi api = new SwagCurrencyExchangeApi();
SwagClient client = api.getClient();
// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) client.getAuthentication('Apikey');
Apikey.setApiKey('YOUR API KEY');
Map<String, Object> params = new Map<String, Object>{
'source' => 'source_example',
'destination' => 'destination_example'
};
try {
// cross your fingers
SwagExchangeRateResult result = api.currencyExchangeGetExchangeRate(params);
System.debug(result);
} catch (Swagger.ApiException e) {
// ...handle your exceptions
}
Install libcurl in your C/C++ project:
libcurl/7.75.0
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(curl, CURLOPT_URL, "https://api.cloudmersive.com/currency/exchange-rates/get/%3Cstring%3E/to/%3Cstring%3E");
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Apikey: YOUR-API-KEY-HERE");
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
}
curl_easy_cleanup(curl);
curl --location --request POST 'https://api.cloudmersive.com/currency/exchange-rates/get/<string>/to/<string>' \
--header 'Apikey: YOUR-API-KEY-HERE'
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif
var semaphore = DispatchSemaphore (value: 0)
var request = URLRequest(url: URL(string: "https://api.cloudmersive.com/currency/exchange-rates/get/<string>/to/<string>")!,timeoutInterval: Double.infinity)
request.addValue("YOUR-API-KEY-HERE", forHTTPHeaderField: "Apikey")
request.httpMethod = "POST"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
semaphore.signal()
return
}
print(String(data: data, encoding: .utf8)!)
semaphore.signal()
}
task.resume()
semaphore.wait()
This code snippet uses the built-in JavaScript XHR request capability
Run this command to install jQuery:
bower install jquery
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function() {
if(this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("POST", "https://api.cloudmersive.com/currency/exchange-rates/get/%3Cstring%3E/to/%3Cstring%3E");
xhr.setRequestHeader("Apikey", "YOUR-API-KEY-HERE");
xhr.send();
var settings = {
"url": "https://api.cloudmersive.com/currency/exchange-rates/get/<string>/to/<string>",
"method": "POST",
"timeout": 0,
"headers": {
"Apikey": "YOUR-API-KEY-HERE"
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.cloudmersive.com/currency/exchange-rates/get/%3Cstring%3E/to/%3Cstring%3E"
method := "POST"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Apikey", "YOUR-API-KEY-HERE")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}