7 free APIs for your Nextjs project Those APIs are for accurate location, NASA, quotes, food items, Video Games & eCommerce products. it helps to play with those categories in your project
1. IGDB API
The Internet Games Database (IGDB) API offers extensive data on numerous video games, enabling the development of websites and applications focused on gaming. It allows users to retrieve information regarding games, platforms, genres, and more.
Example
import axios from 'axios';
const IGDB = () => {
const [games, setGames] = useState([]);
useEffect(() => {
const apiKey = 'YOUR_IGDB_API_KEY';
axios.post('https://api.igdb.com/v4/games/',
'fields name, cover.url; sort popularity desc; limit 10;',
{ headers: { 'Client-ID': 'YOUR_CLIENT_ID', 'Authorization': `Bearer ${apiKey}` } })
.then(response => setGames(response.data))
.catch(error => console.error('Error fetching data from IGDB API:', error));
}, []);
return (
<div>
<h2>Popular Video Games</h2>
<ul>
{games.map(game => (
<li key={game.id}>
{game.cover ? <img src={game.cover.url} alt={game.name} width="50" /> : null}
{game.name}
</li>
))}
</ul>
</div>
);
};
export default IGDB;
2. Pokémon API
The Pokémon API[PokeAPI] is a must-have for any Pokémon fan. It offers comprehensive data on all Pokémon, including stats, types, and abilities, for making Pokémon-related apps and games.
Example
import React, { useState, useEffect } from 'react';
import axios from 'axios';
const Pokemon = () => {
const [pokemonList, setPokemonList] = useState([]);
useEffect(() => {
axios.get('https://pokeapi.co/api/v2/pokemon?limit=10')
.then(response => setPokemonList(response.data.results))
.catch(error => console.error('Error fetching data from Pokémon API:', error));
}, []);
return (
<div>
<h2>Pokémon List</h2>
<ul>
{pokemonList.map((pokemon, index) => (
<li key={index}>
{pokemon.name}
</li>
))}
</ul>
</div>
);
};
export default Pokemon;
3. Fake Store API
The Fake Store API is a fantastic tool for developers working on e-commerce projects. It provides pseudo-real data that you can use to populate your store with products, prices, and categories.
Example
import React, { useState, useEffect } from 'react';
import axios from 'axios';
const FakeStore = () => {
const [products, setProducts] = useState([]);
useEffect(() => {
axios.get('https://fakestoreapi.com/products')
.then(response => setProducts(response.data))
.catch(error => console.error('Error fetching data from Fake Store API:', error));
}, []);
return (
<div>
<h2>Fake Store Products</h2>
<ul>
{products.map(product => (
<li key={product.id}>
<img src={product.image} alt={product.title} width="50" />
{product.title}
</li>
))}
</ul>
</div>
);
};
export default FakeStore;
4. Edamam API
Edamam provides access to a comprehensive database of food items and recipes, along with detailed health analyses. This API is ideal for creating diet trackers, recipe apps, and nutrition-based applications.
Example
import React, { useState, useEffect } from 'react';
import axios from 'axios';
const Edamam = () => {
const [recipes, setRecipes] = useState([]);
const query = "chicken"; // Example search query
useEffect(() => {
const appId = 'YOUR_EDAMAM_APP_ID';
const appKey = 'YOUR_EDAMAM_APP_KEY';
axios.get(`https://api.edamam.com/search?q=${query}&app_id=${appId}&app_key=${appKey}`)
.then(response => setRecipes(response.data.hits))
.catch(error => console.error('Error fetching data from Edamam API:', error));
}, []);
return (
<div>
<h2>Edamam Recipes for "{query}"</h2>
<ul>
{recipes.map((recipe, index) => (
<li key={index}>
<img src={recipe.recipe.image} alt={recipe.recipe.label} width="50" />
{recipe.recipe.label}
</li>
))}
</ul>
</div>
);
};
export default Edamam;
5. Favorite Quotes API
This API offers a collection of insightful quotes that you can easily integrate into your application. It’s perfect for creating apps that inspire and motivate users.
Example
import React, { useState, useEffect } from 'react';
import axios from 'axios';
const Quotes = () => {
const [quote, setQuote] = useState('');
useEffect(() => {
axios.get('https://favqs.com/api/qotd')
.then(response => setQuote(response.data.quote.body))
.catch(error => console.error('Error fetching data from Quotes API:', error));
}, []);
return (
<div>
<h2>Quote of the Day</h2>
<blockquote>{quote}</blockquote>
</div>
);
};
export default Quotes;
6. NASA API
The NASA API provides access to a wealth of data related to space, including images, videos, and information about planets, stars, and more. Whether you’re building an educational tool or just want to display fascinating space data, NASA’s API is an excellent resource.
Example
import React, { useState, useEffect } from 'react';
import axios from 'axios';
const Nasa = () => {
const [data, setData] = useState(null);
useEffect(() => {
axios.get('https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY')
.then(response => setData(response.data))
.catch(error => console.error('Error fetching data from NASA API:', error));
}, []);
return (
<div>
<h2>NASA Astronomy Picture of the Day</h2>
{data ? (
<div>
<h3>{data.title}</h3>
<img src={data.url} alt={data.title} style={{ maxWidth: '100%' }} />
<p>{data.explanation}</p>
</div>
) : (
<p>Loading...</p>
)}
</div>
);
};
export default Nasa;
7. Mapbox API
Mapbox offers comprehensive tools and accurate location data that you can use to create maps, navigation services, and other location-based applications. With Mapbox, you can display custom maps, integrate geolocation, and much more.
Example
import React, { useEffect } from 'react';
const Mapbox = () => {
useEffect(() => {
// Set your Mapbox access token here
const mapboxAccessToken = 'YOUR_MAPBOX_ACCESS_TOKEN';
// Create a map instance
const map = new mapboxgl.Map({
container: 'map', // Container ID in the HTML
style: 'mapbox://styles/mapbox/streets-v11', // Style URL
center: [-74.5, 40], // Starting position [lng, lat]
zoom: 9, // Starting zoom
});
mapboxgl.accessToken = mapboxAccessToken;
}, []);
return (
<div>
<h2>Mapbox Example</h2>
<div id="map" style={{ width: '100%', height: '400px' }}></div>
</div>
);
};
export default Mapbox;
Conclusion
Each of these examples shows how to integrate the respective APIs into React, Next. You can easily extend these examples to fit your application’s needs, whether it’s displaying more detailed information, handling user interactions, or styling the output for better UX.
These examples demonstrate how straightforward it is to fetch and display data from various free APIs.