API

What is an API or Application Programming Interface?

On their own, websites, Excel spreadsheets and the like are very useful. They can provide an infinite range of ways of messing with data. However, what if you wanted to re-use specific 'ways of messing with data'? Excel provides a system of Data Queries, whereby your spreadsheet can connect to other places in order to request data or calculations. The mechanism by which the provider enables Excel to request data is called an API - an interface for an application. The user doesn't need to know anything about the API other than what data or function is wanted.

The same applies to a web app. Your app can request data from other apps or provide data itself all via APIs.

Excel can connect to other Excel files, databases or web apps. A web app can connect to databases and other web apps.

In terms of a web app, the usual way to understand an API is as a special type of URL. So for example I could have a URL like https://www.somedata.com/get-data which would return some data to my website when requested.

Don't worry about the mechanics of making requests and receiving responses for now...

Last updated