1. Mapbox API Example
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.
Link
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;
2. NASA API Example
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.
Link
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;
3. Favorite Quotes API Example
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.
Link
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;
4. Edamam API Example
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.
Link
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. Fake Store API Example
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.
Link
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;
6. Pokémon API Example
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, making it perfect for building Pokémon-related apps and games.
Link
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;
7. IGDB API Example
The Internet Games Database (IGDB) API provides data on thousands of video games, allowing you to create video game-oriented websites and applications. You can fetch information about games, platforms, genres, and more.
Link
import React, { useState, useEffect } from 'react';
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;
Conclusion
Each of these examples shows how to integrate the respective APIs into a 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.