Skip to content

Latest commit

 

History

History
140 lines (98 loc) · 6.51 KB

File metadata and controls

140 lines (98 loc) · 6.51 KB
layout vertical-line-page
title Frequently Asked Questions
class_page faqPage

 

The Questions


The Answers

  What is an API? Kin Lane, who's also known as API Evangelist, has the best answer for this question:

An API -- Application Programming Interface -- at its most basic level, allows your product or service to talk to other products or services. In this way, an API allows you to open up data and functionality to other developers, to other businesses or even between departments and locations within your company. It is increasingly the way in which companies exchange data, services and complex resources, both internally, externally with partners, and openly with the public.

We also put together this 3-minute video to explain what an API is and how the Edmunds API works.

Back to top

  Why has Edmunds decided to open up the data? We here at Edmunds believe strongly that innovation is fostered best through openness and transparency. We're opening up our data because we want to give you, the developer, the ability to explore its potential beyond what we have already done. You can use the breadth and detail of the automotive information available through the Edmunds' API to create mashups, mobile apps, visualizations and other data-consuming applications that will provide an added dimension of user experience for the automotive consumer. Edmunds is committed to helping automotive consumers find the car that meets their every need. Providing our data to developers interested in automative data is a key component to achieving our goal.

Back to top

  Who is the intended audience for the Edmunds API? The ultimate user of our API is a software developer. However, we are also appealing to business owners and decision makers who are creative and innovative in the automotive space.

Back to top

  How might I use the content that's made available via the Edmunds API? We want you to be as creative and as innovative as possible with our data. We have tried hard to put as little constraints on you as possible. The only thing we ask you to do is to comply with our Terms of Service.

Back to top

  How much does it cost to use the API? The Edmunds API is FREE. Certain resources and datasets that are deemed for Partners only will require a discussion with our business development team, but no monetary compensation is expected for the API access.

Back to top

  Can I use the Edmunds API for my business? Absolutely. We have large companies like eBay and Toyota Motors using our data as well as startups like showroom.is and noodler compare.

Back to top

  What data formats does the Edmunds API support? The vast majority of our data is returned in JSON. The Editorial API resource support JSON as well as XML. We will be adding XML support to the other APIs in the future.

Back to top

  How can I reach out to Edmunds to discuss a potential partnership opportunity? Exciting! Please email us and try to be as specific as you can so we can bring in the right people to have a follow-up discussion with you regarding this potential opportunity. We should get back to you by email within 48 hours.

Back to top

  How can I make money using this API? Well, aren't you in for a treat! We don't only have one, but two, ways for you to make money using the Edmunds API:

  1. API Affiliate Network
  2. Certified Developer Network

Both programs are intended for the talented developers to use the Edmunds API to their financial benefit.

Back to top

  How much does it cost to increase my rate limit or quota? We're more than happy to increase the rate limit for any developer after we look at their application and verify that it's in compliance with our Terms of Service. The rate increase is FREE.

Back to top

  How can I find a car's MPG information? The MPG data is available in the Equipment Resource under equipment name "SPECIFICATION".

Back to top

  What happened to the old API calls I was using? When we launch a new version of an API resource, we remove the documentation for the older version of that resource so new developers don't start coding against it. The API calls themselves are not removed until the date called out in the docs. We encourage all developers to move over to the new API resources when available since they're the ones we'll continue to support.

Back to top

<script type="text/javascript"> $(function(){ function scrollTo(element){ var elementClick = element.attr("href"); var cutElementClick = elementClick.substring(1); var destination = $('[name="'+ cutElementClick +'"]').offset().top; $("html, body").animate({ scrollTop: destination}, 500 ); return false; }; $("a").on('click', function (element) { var thisLink = $(this); scrollTo(thisLink); }); }); </script>