Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 23, 2021 04:14 pm GMT

Free APIs That Nobody Is Talking About

Nothing excites me more than finding an out of the ordinary API.Many times we just want to focus on the frontend but also need interesting, dynamic data to display.This is where public APIs come into play. API is an acronym for Application Programming Interface.The core benefit of using it is that it allows one program to interact with other programs.Using public APIs allows you to focus on the frontend and things that matter without worrying so much about the database and the backend.Below are 7 less-talked about public and free APIs.

Evil Insult Generator
How many times have you tried to insult your best friend? Now you have got a helping hand!

As the API name suggests, the goal is to offer some of the evilest insults.

You can create an app centered around this API or combine this API with other excellent APIs provided below like implementing the generated insults in meme templates.

The API is extremely simple to use. You just need to visit a URL and you get the desired JSON output without even signing up for a key.

Movies and TV API
TMDb is a famous API, but do you know there are other API that provides insights from specific shows and movies?

Below are some of the APIs you can use to develop apps featuring your favorite show:
Breaking Bad API
API of Ice And Fire
Harry Potter API
YouTube API (for embedding YouTube functionalities)
The Lord of the Rings API

Like the API above, you can get started with some of the APIs without even signing up for a key.

Not only this, using non-copyright images, you can truly create a great fan app for your beloved shows.

Below is a sample output from the Breaking Bad API which you can get here.

It doesnt require a key however has a rate limit of 10,000 requests per day.

{
[
{
"quote_id":1,
"quote":"I am not in danger, Skyler. I am the danger!",
"author":"Walter White",
"series":"Breaking Bad"
},
{
"quote_id":2,
"quote":"Stay out of my territory.",
"author":"Walter White",
"series":"Breaking Bad"
},
{
"quote_id":3,
"quote":"IFT",
"author":"Skyler White",
"series":"Breaking Bad"
}
.....
]
}

It returns a JSON containing an array of objects with quotes, the author of the quotes, and an ID.

You can mix these dedicated APIs with YouTube API to create an ultimate app for the fans of these shows.

Read More :: https://cmsinstallation.blogspot.com/2021/04/7-free-apis-that-nobody-is-talking-about.html


Original Link: https://dev.to/nihardev3/free-apis-that-nobody-is-talking-about-3me1

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To