First Ever CrunchBase Data Mob In Austin: Tues Sept 23rd
Category: New Tech Companies | 196 views | Add a Comment |

A bunch of Austin entrepreneurs and CrunchBase fans are hosting a Data Mob to highlight Austin startups and get their data into CrunchBase. Very cool. If you want to set one up in your city let us know in the comments of this post.
—————————————-
Join us for the first-ever Austin Data Mob!
On Tuesday September 23rd, we will gather for free beer, soda, pizza and Tiff’s Treats at Conjunctured to enter information about Austin companies into CrunchBase en masse.
What is a data mob?
Data mobs have been most successfully implemented by Freebase, a semantic database company located in San Francisco California. It’s a fun way to bring offline information online – and in so doing move us a little bit closer to the idea of a global knowledge commons. Data mobs are also just a great excuse to hang out, listen to music, eat, drink, and learn about cool new companies.
Why all the effort?
CrunchBase is an open-source database tracking technology companies around the world, and as such is widely used and cited. CrunchBase was developed by TechCrunch, and specifically Henry Work and his team of merry Ruby pranksters. Henry has also been so kind as to give us a direct-access account that will push our new data live to CrunchBase immediately (and with great power comes great responsibility).
There is a lot of amazing stuff going on in Austin that doesn’t get the recognition that it deserves. This is one of many initiatives to heighten Austin’s national profile and promote the great community of entrepreneurs and technologists who reside here. We want new companies to, as John Erik is wont to say, “Ditch the Valley and Head for the Hills”.
We are Austin, and we are Startup District.
Okay, gimme the deets:
Date: Tuesday, September 23nd.
Time: 7:30 p.m. – ’til
Location: Conjunctured, 1309 E. 7th StreetSponsors: Porter Novelli, Conjunctured, Austin Startup, and Moximity.
RSVP on Facebook:
http://www.new.facebook.com/editevent.php?eid=39754791150#/event.php?eid=39754791150&ref=mf
Or Upcoming:
http://upcoming.yahoo.com/event/1108005/?ps=6
- No Related Post
The API Gets A Logo, We Talk Stats, We Show Off Apps
Category: New Tech Companies | 148 views | Add a Comment |
OK, ok, I know it’s lame to cross-post. So here’s the skinny: our API got a new logo (isn’t is sweet? Thanks Hendrickson). We’re releasing our API stats from its first month of usage (also sweet). And we’re showcasing a few really awesome products now using our fine API (definitely sweet). That’s all you need to know. But you should go check out the article on TechCrunch I labored for almost 12 minutes over, complete with griping title: Some CrunchBase API Stats and Apps.
- No Related Post
Ruby JSON Pretty-Printer for the CrunchBase API
Category: New Tech Companies | 220 views | Add a Comment |
We’ve recently been working on the CrunchBase API. To encourage API use, we want to make it as easy as possible for users to access our data. An important part of this is strategy is providing easy-to-read JSON output, which we accomplish with our now open source Ruby JSON pretty-printer library.
JSON is a lightweight and web-friendly data exchange format that we generally prefer to XML and YAML. However, we are not happy with the difficulty of reading the default ActiveSupport to_json output. For example, this is some typical output (some data attributes have been omited to save space):
{"permalink":"techcrunch","products":[{"permalink":"techcrunch","name":
"TechCrunch"},{"permalink":"crunchgear","name":"CrunchGear"},{"permalink":
"crunchbase","name":"CrunchBase"}],"relationships":[{"is_past":false,"title":
"Founder and Co-Editor","person":{"permalink":"michael-arrington","first_name":
"Michael","last_name":"Arrington"}},{"is_past":false,"title":"CEO","person":
{"permalink":"heather-harde","first_name":"Heather","last_name":"Harde"}}],
"homepage_url":\\"http:\/\/www.techcrunch.com", "name":"TechCrunch"}
That looks pretty bad to us, and we think it will deter potential API users. We want a user to be able to come to our CrunchBase API help page, click on one of the example API urls, and see in their browsers a nicely-formated and easily-readable JSON response. Something like this:
{"name": "TechCrunch",
"permalink": "techcrunch",
"homepage_url": "http://www.techcrunch.com",
"products":
[{"name": "TechCrunch",
"permalink": "techcrunch"},
{"name": "CrunchGear",
"permalink": "crunchgear"},
{"name": "CrunchBase",
"permalink": "crunchbase"}],
"relationships":
[{"is_past": false,
"title": "Founder and Co-Editor",
"person":
{"first_name": "Michael",
"last_name": "Arrington",
"permalink": "michael-arrington"}},
{"is_past": false,
"title": "CEO",
"person":
{"first_name": "Heather",
"last_name": "Harde",
"permalink": "heather-harde"}}]}
Not finding any existing Ruby JSON pretty-printers on Google or GitHub, we wrote our own. The new JsonPrinter exposes a single class method render, which return a JSON representation of any given object consisting of arrays, hashes, symbols, strings, numbers, and false, true, and nil values.
The printer uses a simple but effective rendering algorithm. In addition to managing whitespace, the printer recognizes ordered hashes, which is nice when you’d prefer certain attributes like “name” and “permalink” to appear at the top of the output. Finally, our benchmarks indicate that the printer is faster than the JSON gem’s pure Ruby implementation.
You can see some live examples at these urls:
api.crunchbase.com/v/1/company/facebook.js
api.crunchbase.com/v/1/person/brad-fitzpatrick.js
Check out our JsonPrinter project page on GitHub and see our CrunchBase API announcement post.
- No Related Post
New API Features: List, Search, and Callbacks
Category: New Tech Companies | 195 views | Add a Comment |
We’ve just rolled out three new features for the CrunchBase API, all implemented based on feedback from our early users.
The first is the new “list” action that returns the name and permalink for all entities in CrunchBase of a certain type. For example:
http://api.crunchbase.com/v/1/companies.js
The second new feature is a “search” action. To search across CrunchBase for entities matching a given keyword or keywords, use:
http://api.crunchbase.com/v/1/search.js?query=techcrunch
The third feature is JavaScript callbacks, which are enabled for both the exisiting “show” API action and the new “search” action. For example:
http://api.crunchbase.com/v/1/search.js?query=techcrunch&callback=callme
This request returns JavaScript that will call the function callme with the API data as a single argument.
Be sure to check out the Google Group for complete documentation and mailing list information.
- No Related Post





