You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Defines the time of the market data used to calculate the exchange rate in UNIX Timestamp. Oldest possible timestamp is 30 days.
from_asset_id
str
Defines the base asset Reference ID to get a rate for.
from_asset_symbol
str
Defines the base asset symbol to get a rate for.
rate
str
Defines the exchange rate between assets calculated by weighted average of the last trades in every exchange for the last 24 hours by giving more weight to exchanges with higher volume.
to_asset_id
str
Defines the relation asset Reference ID in which the base asset rate will be displayed.
to_asset_symbol
str
Defines the relation asset symbol in which the base asset rate will be displayed.
Example
fromcryptoapis.models.get_exchange_rate_by_assets_ids_riimportGetExchangeRateByAssetsIDsRI# TODO update the JSON string belowjson="{}"# create an instance of GetExchangeRateByAssetsIDsRI from a JSON stringget_exchange_rate_by_assets_ids_ri_instance=GetExchangeRateByAssetsIDsRI.from_json(json)
# print the JSON string representation of the objectprintGetExchangeRateByAssetsIDsRI.to_json()
# convert the object into a dictget_exchange_rate_by_assets_ids_ri_dict=get_exchange_rate_by_assets_ids_ri_instance.to_dict()
# create an instance of GetExchangeRateByAssetsIDsRI from a dictget_exchange_rate_by_assets_ids_ri_form_dict=get_exchange_rate_by_assets_ids_ri.from_dict(get_exchange_rate_by_assets_ids_ri_dict)