class CoinmarketcapClient::DefaultApi
Attributes
Public Class Methods
# File lib/coinmarketcap_client/api/default_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
Get metadata Returns all static metadata for one or more cryptocurrencies including name, symbol, logo, and its various registered URLs. @param [Hash] opts the optional parameters @option opts [String] :id One or more comma-separated CoinMarketCap cryptocurrency IDs. Example "1,2" @option opts [String] :symbol Alternatively pass one or more comma-separated cryptocurrency symbols. Example: "BTC,ETH". At least one "id" or "symbol" is required. @return [InlineResponse2006]
# File lib/coinmarketcap_client/api/default_api.rb, line 28 def cryptocurrency_info_get(opts = {}) data, _status_code, _headers = cryptocurrency_info_get_with_http_info(opts) data end
Get metadata Returns all static metadata for one or more cryptocurrencies including name, symbol, logo, and its various registered URLs. @param [Hash] opts the optional parameters @option opts [String] :id One or more comma-separated CoinMarketCap cryptocurrency IDs. Example "1,2" @option opts [String] :symbol Alternatively pass one or more comma-separated cryptocurrency symbols. Example: "BTC,ETH". At least one "id" or "symbol" is required. @return [Array<(InlineResponse2006
, Fixnum, Hash)>] InlineResponse2006
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 39 def cryptocurrency_info_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.cryptocurrency_info_get ...' end # resource path local_var_path = '/cryptocurrency/info' # query parameters query_params = {} query_params[:'id'] = opts[:'id'] if !opts[:'id'].nil? query_params[:'symbol'] = opts[:'symbol'] if !opts[:'symbol'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2006') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#cryptocurrency_info_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
List all cryptocurrencies (historical) Get a paginated list of all cryptocurrencies with market data for a given historical time. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :timestamp Timestamp (Unix or ISO 8601) to return historical cryptocurrency listings for. @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. (default to 1) @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. (default to 100) @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. (default to USD) @option opts [String] :sort Valid values `name` `symbol` `date_added` `market_cap` `price` `circulating_supply` `total_supply` `max_supply` `num_market_pairs` `volume_24h` `percent_change_1h` `percent_change_24h` `percent_change_7d` What field to sort the list of cryptocurrencies by. (default to market_cap) @option opts [String] :sort_dir Valid values `asc` `desc`. The direction in which to order cryptocurrencies against the specified sort. @option opts [String] :cryptocurrency_type Valid values `all` `coins` `tokens` The type of cryptocurrency to include. @return [InlineResponse2007]
# File lib/coinmarketcap_client/api/default_api.rb, line 85 def cryptocurrency_listings_historical_get(opts = {}) data, _status_code, _headers = cryptocurrency_listings_historical_get_with_http_info(opts) data end
List all cryptocurrencies (historical) Get a paginated list of all cryptocurrencies with market data for a given historical time. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :timestamp Timestamp (Unix or ISO 8601) to return historical cryptocurrency listings for. @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. @option opts [String] :sort Valid values `name` `symbol` `date_added` `market_cap` `price` `circulating_supply` `total_supply` `max_supply` `num_market_pairs` `volume_24h` `percent_change_1h` `percent_change_24h` `percent_change_7d` What field to sort the list of cryptocurrencies by. @option opts [String] :sort_dir Valid values `asc` `desc`. The direction in which to order cryptocurrencies against the specified sort. @option opts [String] :cryptocurrency_type Valid values `all` `coins` `tokens` The type of cryptocurrency to include. @return [Array<(InlineResponse2007
, Fixnum, Hash)>] InlineResponse2007
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 101 def cryptocurrency_listings_historical_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.cryptocurrency_listings_historical_get ...' end if @api_client.config.client_side_validation && !opts[:'start'].nil? && opts[:'start'] < 1 fail ArgumentError, 'invalid value for "opts[:"start"]" when calling DefaultApi.cryptocurrency_listings_historical_get, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 5000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_listings_historical_get, must be smaller than or equal to 5000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_listings_historical_get, must be greater than or equal to 1.' end # resource path local_var_path = '/cryptocurrency/listings/historical' # query parameters query_params = {} query_params[:'timestamp'] = opts[:'timestamp'] if !opts[:'timestamp'].nil? query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'convert'] = opts[:'convert'] if !opts[:'convert'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'sort_dir'] = opts[:'sort_dir'] if !opts[:'sort_dir'].nil? query_params[:'cryptocurrency_type'] = opts[:'cryptocurrency_type'] if !opts[:'cryptocurrency_type'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2007') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#cryptocurrency_listings_historical_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
List all cryptocurrencies (latest) Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. (default to 1) @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. (default to 100) @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. (default to USD) @option opts [String] :sort Valid values `name` `symbol` `date_added` `market_cap` `price` `circulating_supply` `total_supply` `max_supply` `num_market_pairs` `volume_24h` `percent_change_1h` `percent_change_24h` `percent_change_7d` What field to sort the list of cryptocurrencies by. (default to market_cap) @option opts [String] :sort_dir Valid values `asc` `desc`. The direction in which to order cryptocurrencies against the specified sort. @option opts [String] :cryptocurrency_type Valid values `all` `coins` `tokens` The type of cryptocurrency to include. @return [InlineResponse2007]
# File lib/coinmarketcap_client/api/default_api.rb, line 163 def cryptocurrency_listings_latest_get(opts = {}) data, _status_code, _headers = cryptocurrency_listings_latest_get_with_http_info(opts) data end
List all cryptocurrencies (latest) Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. @option opts [String] :sort Valid values `name` `symbol` `date_added` `market_cap` `price` `circulating_supply` `total_supply` `max_supply` `num_market_pairs` `volume_24h` `percent_change_1h` `percent_change_24h` `percent_change_7d` What field to sort the list of cryptocurrencies by. @option opts [String] :sort_dir Valid values `asc` `desc`. The direction in which to order cryptocurrencies against the specified sort. @option opts [String] :cryptocurrency_type Valid values `all` `coins` `tokens` The type of cryptocurrency to include. @return [Array<(InlineResponse2007
, Fixnum, Hash)>] InlineResponse2007
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 178 def cryptocurrency_listings_latest_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.cryptocurrency_listings_latest_get ...' end if @api_client.config.client_side_validation && !opts[:'start'].nil? && opts[:'start'] < 1 fail ArgumentError, 'invalid value for "opts[:"start"]" when calling DefaultApi.cryptocurrency_listings_latest_get, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 5000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_listings_latest_get, must be smaller than or equal to 5000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_listings_latest_get, must be greater than or equal to 1.' end # resource path local_var_path = '/cryptocurrency/listings/latest' # query parameters query_params = {} query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'convert'] = opts[:'convert'] if !opts[:'convert'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? query_params[:'sort_dir'] = opts[:'sort_dir'] if !opts[:'sort_dir'].nil? query_params[:'cryptocurrency_type'] = opts[:'cryptocurrency_type'] if !opts[:'cryptocurrency_type'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2007') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#cryptocurrency_listings_latest_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Get CoinMarketCap ID map Returns a paginated list of all cryptocurrencies by CoinMarketCap ID. We recommend using this convenience endpoint to lookup and utilize our unique cryptocurrency id across all endpoints as typical identifiers like ticker symbols can match multiple cryptocurrencies and change over time. As a convenience you may pass a comma-separated list of cryptocurrency symbols as symbol to filter this list to only those you require. @param [Hash] opts the optional parameters @option opts [String] :listing_status Only active coins are returned by default. Pass 'inactive' to get a list of coins that are no longer active. (default to active) @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. (default to 1) @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. @option opts [String] :symbol Optionally pass a comma-separated list of cryptocurrency symbols to return CoinMarketCap IDs for. If this option is passed, other options will be ignored. @return [InlineResponse2005]
# File lib/coinmarketcap_client/api/default_api.rb, line 237 def cryptocurrency_map_get(opts = {}) data, _status_code, _headers = cryptocurrency_map_get_with_http_info(opts) data end
Get CoinMarketCap ID map Returns a paginated list of all cryptocurrencies by CoinMarketCap ID. We recommend using this convenience endpoint to lookup and utilize our unique cryptocurrency id across all endpoints as typical identifiers like ticker symbols can match multiple cryptocurrencies and change over time. As a convenience you may pass a comma-separated list of cryptocurrency symbols as symbol to filter this list to only those you require. @param [Hash] opts the optional parameters @option opts [String] :listing_status Only active coins are returned by default. Pass 'inactive' to get a list of coins that are no longer active. @option opts [Integer] :start Optionally offset the start (1-based index) of the paginated list of items to return. @option opts [Integer] :limit Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size. @option opts [String] :symbol Optionally pass a comma-separated list of cryptocurrency symbols to return CoinMarketCap IDs for. If this option is passed, other options will be ignored. @return [Array<(InlineResponse2005
, Fixnum, Hash)>] InlineResponse2005
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 250 def cryptocurrency_map_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.cryptocurrency_map_get ...' end if @api_client.config.client_side_validation && !opts[:'start'].nil? && opts[:'start'] < 1 fail ArgumentError, 'invalid value for "opts[:"start"]" when calling DefaultApi.cryptocurrency_map_get, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 5000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_map_get, must be smaller than or equal to 5000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling DefaultApi.cryptocurrency_map_get, must be greater than or equal to 1.' end # resource path local_var_path = '/cryptocurrency/map' # query parameters query_params = {} query_params[:'listing_status'] = opts[:'listing_status'] if !opts[:'listing_status'].nil? query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'symbol'] = opts[:'symbol'] if !opts[:'symbol'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2005') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#cryptocurrency_map_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
List all cryptocurrencies (latest) Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :time_start Timestamp (Unix or ISO 8601) to start returning quotes for. Optional, if not passed, we'll return quotes calculated in reverse from "time_end". @option opts [String] :time_end Timestamp (Unix or ISO 8601) to stop returning quotes for (inclusive). Optional, if not passed, we'll default to the current time. If no "time_start" is passed, we return quotes in reverse order starting from this time. @option opts [Integer] :count The number of interval periods to return results for. Optional, required if both "time_start" and "time_end" aren't supplied. The default is 10 items. The current query limit is 10000. (default to 10) @option opts [String] :interval Valid values "yearly" "monthly" "weekly" "daily" "hourly" "5m" "10m" "15m" "30m" "45m" "1h" "2h" "3h" "6h" "12h" "24h" "1d" "2d" "3d" "7d" "14d" "15d" "30d" "60d" "90d" "365d" Interval of time to return data points for. See details in endpoint description. (default to 1d) @option opts [String] :convert_id One or more comma-separated cryptocurrency CoinMarketCap IDs. Example 1,2 @option opts [String] :convert By default market quotes are returned in USD. Optionally calculate market quotes in up to 3 other fiat currencies or cryptocurrencies. @return [InlineResponse2009]
# File lib/coinmarketcap_client/api/default_api.rb, line 309 def global_metrics_quotes_historical_get(opts = {}) data, _status_code, _headers = global_metrics_quotes_historical_get_with_http_info(opts) data end
List all cryptocurrencies (latest) Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :time_start Timestamp (Unix or ISO 8601) to start returning quotes for. Optional, if not passed, we'll return quotes calculated in reverse from "time_end". @option opts [String] :time_end Timestamp (Unix or ISO 8601) to stop returning quotes for (inclusive). Optional, if not passed, we'll default to the current time. If no "time_start" is passed, we return quotes in reverse order starting from this time. @option opts [Integer] :count The number of interval periods to return results for. Optional, required if both "time_start" and "time_end" aren't supplied. The default is 10 items. The current query limit is 10000. @option opts [String] :interval Valid values "yearly" "monthly" "weekly" "daily" "hourly" "5m" "10m" "15m" "30m" "45m" "1h" "2h" "3h" "6h" "12h" "24h" "1d" "2d" "3d" "7d" "14d" "15d" "30d" "60d" "90d" "365d" Interval of time to return data points for. See details in endpoint description. @option opts [String] :convert_id One or more comma-separated cryptocurrency CoinMarketCap IDs. Example 1,2 @option opts [String] :convert By default market quotes are returned in USD. Optionally calculate market quotes in up to 3 other fiat currencies or cryptocurrencies. @return [Array<(InlineResponse2009
, Fixnum, Hash)>] InlineResponse2009
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 324 def global_metrics_quotes_historical_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.global_metrics_quotes_historical_get ...' end if @api_client.config.client_side_validation && !opts[:'count'].nil? && opts[:'count'] > 10000 fail ArgumentError, 'invalid value for "opts[:"count"]" when calling DefaultApi.global_metrics_quotes_historical_get, must be smaller than or equal to 10000.' end if @api_client.config.client_side_validation && !opts[:'count'].nil? && opts[:'count'] < 1 fail ArgumentError, 'invalid value for "opts[:"count"]" when calling DefaultApi.global_metrics_quotes_historical_get, must be greater than or equal to 1.' end # resource path local_var_path = '/global-metrics/quotes/historical' # query parameters query_params = {} query_params[:'time_start'] = opts[:'time_start'] if !opts[:'time_start'].nil? query_params[:'time_end'] = opts[:'time_end'] if !opts[:'time_end'].nil? query_params[:'count'] = opts[:'count'] if !opts[:'count'].nil? query_params[:'interval'] = opts[:'interval'] if !opts[:'interval'].nil? query_params[:'convert_id'] = opts[:'convert_id'] if !opts[:'convert_id'].nil? query_params[:'convert'] = opts[:'convert'] if !opts[:'convert'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2009') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#global_metrics_quotes_historical_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Get aggregate market metrics (latest) Get the latest quote of aggregate market metrics. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :convert_id One or more comma-separated cryptocurrency CoinMarketCap IDs. Example 1,2 @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. @return [InlineResponse2008]
# File lib/coinmarketcap_client/api/default_api.rb, line 377 def global_metrics_quotes_latest_get(opts = {}) data, _status_code, _headers = global_metrics_quotes_latest_get_with_http_info(opts) data end
Get aggregate market metrics (latest) Get the latest quote of aggregate market metrics. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. @param [Hash] opts the optional parameters @option opts [String] :convert_id One or more comma-separated cryptocurrency CoinMarketCap IDs. Example 1,2 @option opts [String] :convert Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found here. Each conversion is returned in its own "quote" object. @return [Array<(InlineResponse2008
, Fixnum, Hash)>] InlineResponse2008
data, response status code and response headers
# File lib/coinmarketcap_client/api/default_api.rb, line 388 def global_metrics_quotes_latest_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.global_metrics_quotes_latest_get ...' end # resource path local_var_path = '/global-metrics/quotes/latest' # query parameters query_params = {} query_params[:'convert_id'] = opts[:'convert_id'] if !opts[:'convert_id'].nil? query_params[:'convert'] = opts[:'convert'] if !opts[:'convert'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['ApiKeyAuth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'InlineResponse2008') if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#global_metrics_quotes_latest_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end