Skip to content

Instantly share code, notes, and snippets.

Created June 13, 2012 02:41
Show Gist options
  • Select an option

  • Save anonymous/2921495 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/2921495 to your computer and use it in GitHub Desktop.
CrunchBase API example code
<html>
<head>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.7.2.min.js'></script>
<script type='text/javascript'>
jQuery(document).ready(function($) {
$.getJSON('http://api.crunchbase.com/v/1/company/facebook.js?callback=?', function(data) {
$('h1').text(data.name);
$('#overview').html(data.overview);
});
});
</script>
</head>
<body>
<h1>Replace with Profile name here...</h1>
<div id='overview'>Place overview between here...</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment