Edmunds API Branding Guide

 
 
 

Your use of any Edmunds API content, whether served from your site or from a client application, must appropriately attribute Edmunds by adhering to these few branding requirements

Edmunds API Logos

You must use the Edmunds API Web Logo on every page that interacts with the Edmunds API or displays the Edmunds API data. This includes pages or screens in mobile applications.

Only the following Edmunds API Web Logos for branding attribution are allowed on your site or in your app at the full size that is provided. Select the logo that best suits the visual design and functionality of your site or app.

Additional branding requirements

  • The Edmunds API badge should not be the most prominent element or logo on the Web page, nor the only branding on the page.
  • Pace the Edmunds API Web Logo directly next to the area where Edmunds API data is being interacted with or displayed.
  • The Edmunds API badge must link directly to http://www.edmunds.com/?id=apis

HOW TO INSTALL EDMUNDS LOGO

Web Page Installation:

  1. Place an tag on your page next to where edmunds data is interacting or being displayed.
  2. Next you will want to paste the following URL to the src attribute in the following format:
    https://open-api.edmunds.com/api/openapi/v1/logo?size={size}&format={format}&retina={retina}&color={color}&api_key={api_key}
  3. Change the parameters of the URL with the following values and remove the brackets:
    a. size - 100, 220, 300
    b. format - horizontal, ad, square
    c. retina - true, false
    d. color - blue, gray
    e. api_key - your own API key.
Example:

<a href="http://www.edmunds.com/?id=apis"> <img src="https://open-api.edmunds.com/api/openapi/v1/logo?size=100&format=ad&retina=true&color=white&api_key=111111111111111111111111"> </a>

Native Mobile Application Installation:

  1. Create a remote image container on the page in the acceptable sizes <w, h> and <w, h>
  2. Paste the following URL to the image container in following format:
    https://open-api.edmunds.com/api/openapi/v1/logo?size={size}&format={format}&retina={retina}&color={color}&api_key={api_key}
  3. Change the parameters of the URL with the following values and remove the brackets:
    a. size - 100, 220, 300
    b. format - horizontal, ad, square
    c. retina - true, false
    d. color - blue, gray
    e. api_key - your own API key.
Example:

iOS Objective-C:

NSURL *url = [NSURL URLWithString:path]; NSData *data = [NSData dataWithContentsOfURL:url]; UIImage *img = [[UIImage alloc] initWithData:data]; UIImageView *imageView = [[UIImageView alloc] initWithImage:img];

iOS Swift:

var url = NSURL(string: path) var data = NSData(contentsOfURL : url!) let imageView = UIImageView.init(image: UIImage.init(data: data!, scale: 1.0))

Android:

URL newurl = new URL(path); mIcon_val = BitmapFactory.decodeStream(newurl.openConnection() .getInputStream()); imageView.setImageBitmap(mIcon_val);

EDMUND LOGO FORMATS

300px (horizontal)

  • Blue on white background
  • Dark on gray background

300px (horizontal)(RETINA)

  • Blue on white background
  • Dark on gray background

300px (ad format)

  • Blue on white background
  • Dark on gray background

300px (ad format)(RETINA)

  • Blue on white background
  • Dark on gray background

220px (horizontal)

  • Blue on white background
  • Dark on gray background

220px (horizontal)(RETINA)

  • Blue on white background
  • Dark on gray background

100px (square)

  • Blue on white background
  • Dark on gray background

100px (square)(RETINA)

  • Blue on white background
  • Dark on gray background

Restrictions

Do not use the logo or text attribution in a way that would suggest that Edmunds promotes or endorses you or any third party or the causes, ideas, web sites, products or services of you or any third party.

For applications that do not easily support logos or where Edmunds data are used in alternative media formats, you must contact Edmunds for alternative branding instructions prior to releasing your application to the public.

Prior written consent from Edmunds is required to use Edmunds data without attribution.