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

Latest commit

 

History

History
57 lines (38 loc) · 1.7 KB

File metadata and controls

57 lines (38 loc) · 1.7 KB

originstamp_client.SchedulerApi

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

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

get_active_currencies

DefaultOfListOfCurrencyModel get_active_currencies(authorization)

Get active currencies

Returns an array with all active currencies.

Example

from __future__ import print_function
import time
import originstamp_client
from originstamp_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = originstamp_client.SchedulerApi()
authorization = 'authorization_example' # str | A valid API key is essential for authorization to handle the request.

try:
    # Get active currencies
    api_response = api_instance.get_active_currencies(authorization)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SchedulerApi->get_active_currencies: %s\n" % e)

Parameters

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

Return type

DefaultOfListOfCurrencyModel

Authorization

[API Key Authorization](../README.md#API Key Authorization)

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]