Module: SwaggerClient

Defined in:
lib/swagger_client/version.rb,
lib/marketcheck_ruby_client.rb,
lib/swagger_client/api_error.rb,
lib/swagger_client/api_client.rb,
lib/swagger_client/models/build.rb,
lib/swagger_client/models/error.rb,
lib/swagger_client/configuration.rb,
lib/swagger_client/models/dealer.rb,
lib/swagger_client/api/dealer_api.rb,
lib/swagger_client/api/facets_api.rb,
lib/swagger_client/api/graphs_api.rb,
lib/swagger_client/models/listing.rb,
lib/swagger_client/api/history_api.rb,
lib/swagger_client/models/averages.rb,
lib/swagger_client/models/location.rb,
lib/swagger_client/api/listings_api.rb,
lib/swagger_client/api/inventory_api.rb,
lib/swagger_client/models/facet_item.rb,
lib/swagger_client/models/make_model.rb,
lib/swagger_client/models/plot_point.rb,
lib/swagger_client/models/listing_vdp.rb,
lib/swagger_client/models/trend_point.rb,
lib/swagger_client/api/vin_decoder_api.rb,
lib/swagger_client/models/base_listing.rb,
lib/swagger_client/models/listing_media.rb,
lib/swagger_client/api/market_trends_api.rb,
lib/swagger_client/models/search_response.rb,
lib/swagger_client/api/market_averages_api.rb,
lib/swagger_client/models/historical_listing.rb,
lib/swagger_client/models/listing_debug_attributes.rb,
lib/swagger_client/models/listing_extra_attributes.rb

Overview

Marketcheck Cars API

Access the New, Used and Certified cars inventories for all Car Dealers in US. <br/>The data is sourced from online listings by over 40,000 Car dealers in US. At any time, there are about 5.2M searchable listings (about 1.8M unique VINs) for Used & Certified cars and about 5M (about 2.3M unique VINs) New Car listings from all over US. We use this API at the back for our website <a href=‘www.marketcheck.com’ target=‘_blank’>www.marketcheck.com</a> and our Android and iOS mobile apps too.<br/><h5> Few useful links : </h5><ul><li>A quick view of the API and the use cases is depicated <a href=‘portals.marketcheck.com/mcapi/’ target=‘_blank’>here</a></li><li>The Postman collection with various usages of the API is shared here www.getpostman.com/collections/2752684ff636cdd7bac2</li><li> [Coming soon] API Key : Request your API Key <a href=‘portals.marketcheck.com/api’ target=‘_blank’> here </a> </li><li> [Coming soon] Benchmarks : See the API benchmarks <a href=‘portals.marketcheck.com/mcapi/benchmarks’>here</a></li></ul>

OpenAPI spec version: 1.0.3

Generated by: github.com/swagger-api/swagger-codegen.git

Defined Under Namespace

Classes: ApiClient, ApiError, Averages, BaseListing, Build, Configuration, Dealer, DealerApi, Error, FacetItem, FacetsApi, GraphsApi, HistoricalListing, HistoryApi, InventoryApi, Listing, ListingDebugAttributes, ListingExtraAttributes, ListingMedia, ListingVDP, ListingsApi, Location, MakeModel, MarketAveragesApi, MarketTrendsApi, PlotPoint, SearchResponse, TrendPoint, VINDecoderApi

Constant Summary collapse

VERSION =
"1.0.8"

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

SwaggerClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



57
58
59
60
61
62
63
# File 'lib/marketcheck_ruby_client.rb', line 57

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end