CrunchBase who works where API: The Daily REST library entry for Excel and GAScript

Data from CrunchBase API directly into an Excel or Google Spreadsheet

Today’s API is another query type from “crunchbase” which is a free database of corporations, people and investors. Yesterday I showed you how to get data about people. Today I’m showing how to get a list of people who  work for a given company – this a single query API, populating multiple rows in a spreadsheet from a given name. Here’s a few lines of the response to a query on “google”

 

Here’s the Excel code (included in cDataSet.xlsm downloadable from the ramblings site)

Public Sub testCrunchbaseCompanies()
    generalQuery "who works at", "crunchbase companies", _
        InputBox("Enter company name (for example google)")
End Sub

and the GAS version (included in a Google Spreadsheet) using the mcpher GAS library

function testCrunchbaseCompanies() {
    mcpher.generalQuery ("who works at", "crunchbase companies", 
        mcpher.InputBox("Enter company name (for example google)") );
}

The rest library is itself implemented as REST API and can be queried like this.

For more stuff like this, visit the ramblings site or the associated blog. If you have suggestion for particular API or contact me on our forum

About brucemcp 225 Articles
I am a Google Developer Expert and decided to investigate Google Apps Script in my spare time. The more I investigated the more content I created so this site is extremely rich. Now, in 2019, a lot of things have disappeared or don’t work anymore due to Google having retired some stuff. I am however leaving things as is and where I came across some deprecated stuff, I have indicated it. I decided to write a book about it and to also create videos to teach developers who want to learn Google Apps Script. If you find the material contained in this site useful, you can support me by buying my books and or videos.

1 Comment

Comments are closed.