Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Latest commit

 

History

History
50 lines (34 loc) · 1.42 KB

File metadata and controls

50 lines (34 loc) · 1.42 KB

SchedulerApi

All URIs are relative to https://api.originstamp.com

Method HTTP request Description
getActiveCurrencies GET /v3/currencies/get Get active currencies

getActiveCurrencies

DefaultOfListOfCurrencyModel getActiveCurrencies(authorization)

Get active currencies

Returns an array with all active currencies.

Example

// Import classes:
//import com.originstamp.api.client.ApiException;
//import com.originstamp.api.SchedulerApi;

SchedulerApi apiInstance = new SchedulerApi();
String authorization = "authorization_example"; // String | A valid API key is essential for authorization to handle the request.
try {
    DefaultOfListOfCurrencyModel result = apiInstance.getActiveCurrencies(authorization);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling SchedulerApi#getActiveCurrencies");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
authorization String A valid API key is essential for authorization to handle the request.

Return type

DefaultOfListOfCurrencyModel

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json