It's no secret, APIs are becoming more and more relevant for each software company. It is pretty common that the offering or product of a company is no longer an application, but an API.
Companies have shifted to building APIs, providing the features that would previosly only be available from their web or mobile application through APIs.
Nowadays, we have lot's of specialized API:
- send emails
- send & receive payments
- SSO
- Storage
- Search
- Location, etc
Basically, it's becoming more and more simple to build applications because we might already have lots of our requirements covered by some external API.
This is what I want to explore in this article, and if you like it please follow & gently smash the β€οΈ & π¦ buttons.
Popular APIs
Identity providers & Oauth APIs π§π»βπ€βπ§π½
Those are the APIs that help you get registration, access, logins, user management and SSO in an easy way:
Email & Marketing APIs π§
Payment APIs π°
Backend as a service (BAAS APIs) π©βπ»
- Firebase - this API can be used to build apps on top of google backend infrastructure "Firebase gives you functionality like analytics, databases, messaging and crash reporting so you can move quickly and focus on your users."
- AWS Amplify - build apps on top of AWS serverless backend "AWS Amplify is a set of tools and services that enables mobile and front-end web developers to build secure, scalable full stack applications, powered by AWS".
Location APIs πΊοΈ
- Places API - can be used for location searching, details, typeahead location autocomplete
- Directions API
AI APIs π¦Ύ
Those are the APIs that can help you incorporate AI in your projects without requiring you to implement the deep learning algos yourself. Just call some APIs. Very convenient.
- IBM watson - Chatbots π€, recommendations, computer vision, fraud detection
- Azure cognitive services - lots of APIs from Text analytics sentiment, Computer vision aka detect things in photos or recognize face emotions
- Google AI Platform - computer vision APIs ποΈ, speach to text, recommendations
Search APIs π
Those APIs allow you to do Google-like real time search, partial matching, fuzzy search
- Algolia - index and query your data in realtime - fun fact the React website uses Algolia
- Google Custom Search
Video generation
You can check out synthesia.io a cool service that works for many languages and can generate a video based on a script.
Technical blogs
- DEV.to API
- an example of what you can do - a simple HTTP request to get your DEV.TO articles in your custom blog:
fetch('https://dev.to/api/articles?username=alexandrudanpop')
.then(response => response.json())
.then(data => console.log(data));
Ok... I should probably stop here... the conclusion is - just in case you need something - you might find a very good API that can do it for you. Welcome to the API economy, where many companies are API first. Enjoy!
What are your favorite API's?
Share what APIs you like or use.
If you like this post follow me on Twitter where I post more cool stuff.
Top comments (13)
Weird this article should come up after I did some MailChimp API integration last night.
I'm also using Google's Natural Language API, and the YouTube API, both in Node, and have found both β and the one for MailChimp β to be be simple and straightforward.
Nice stuff! What are you using the Google's Natural Language API for? Extracting speech as text, or even trying to find out more sophisticated things like sentiment?
I think once you get your hands on a few APIs and use them, they become pretty easy to use.
At the moment, the NLP work is experimental, but the idea is:
The entities are saved into a nested object in the document for the web page in Elastic, giving it extra value in terms of its search score, should the search phrase match.
But this is part of something much more ambitious I have in mind for the long-term development of the Under Cloud, assuming I have time to learn Machine Learning!
Very cool idea, good luck!
I'll add a few more:
Thanks for the additional resources!
Glad to help :)
Interesting I already used some of those...such as Algolia, really awesome but quite expensive π’ would love to explore some AIs ones in personal projects! Do they have some free tier for developers to play with?
Yes! Azure Cognitive services and the Google AI APIs can be used for free to some extent. Not sure of IBM Watson.
I run a very specialized API that returns social sentiment of stocks.
I think this is a great article. I recently started working on web apps and I have only used MapBox API, but now I know there are lot of APIs available out there. Thanks a lot
I'll add another one:
usearch.com/
Full access to the world's 3rd largest search engine.
Haven't tried it to be honest. Do you see a cool use case for it? I think there's already lots of apps leveraging the twitter api for cross-posting or things like that.