Stephansentamu's picture
are you completely free to use ? unlimited usage ?
ca94e02 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free API Explorer</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
#interactive-bg {
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
top: 0;
left: 0;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.api-card {
transition: all 0.3s ease;
}
.api-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="min-h-screen bg-gradient-to-br from-indigo-900 to-purple-900 text-white overflow-x-hidden">
<div id="interactive-bg"></div>
<header class="container mx-auto px-6 py-12">
<div class="flex flex-col items-center text-center">
<h1 class="text-5xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">
Free As A Bird API Explorer
</h1>
<p class="text-xl text-gray-300 max-w-2xl mb-10">
Explore unlimited free APIs without restrictions. We're completely free and open for everyone!
</p>
<div class="glass-card p-4 rounded-full flex items-center shadow-lg">
<input type="text" placeholder="Search 1000+ free APIs..."
class="bg-transparent border-0 outline-none px-4 py-2 w-64 md:w-96 text-white placeholder-gray-300">
<button class="bg-blue-500 hover:bg-blue-600 text-white p-2 rounded-full">
<i data-feather="search"></i>
</button>
</div>
</div>
</header>
<main class="container mx-auto px-6 pb-20">
<section>
<h2 class="text-3xl font-semibold mb-8 text-center">Popular Free APIs</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- API Card 1 -->
<div class="api-card glass-card p-6 rounded-xl hover:shadow-xl">
<div class="flex items-center mb-4">
<div class="bg-blue-500 p-3 rounded-lg mr-4">
<i data-feather="cloud" class="text-white"></i>
</div>
<h3 class="text-xl font-semibold">Weather Data</h3>
</div>
<p class="text-gray-300 mb-4">Real-time weather forecasts for any location worldwide.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-green-500 bg-opacity-20 text-green-300 px-3 py-1 rounded-full">FREE</span>
<button class="text-blue-400 hover:text-blue-300 flex items-center">
Explore <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</button>
</div>
</div>
<!-- API Card 2 -->
<div class="api-card glass-card p-6 rounded-xl hover:shadow-xl">
<div class="flex items-center mb-4">
<div class="bg-purple-500 p-3 rounded-lg mr-4">
<i data-feather="dollar-sign" class="text-white"></i>
</div>
<h3 class="text-xl font-semibold">Currency Exchange</h3>
</div>
<p class="text-gray-300 mb-4">Latest currency exchange rates with historical data.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-green-500 bg-opacity-20 text-green-300 px-3 py-1 rounded-full">FREE</span>
<button class="text-blue-400 hover:text-blue-300 flex items-center">
Explore <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</button>
</div>
</div>
<!-- API Card 3 -->
<div class="api-card glass-card p-6 rounded-xl hover:shadow-xl">
<div class="flex items-center mb-4">
<div class="bg-red-500 p-3 rounded-lg mr-4">
<i data-feather="map" class="text-white"></i>
</div>
<h3 class="text-xl font-semibold">Geolocation</h3>
</div>
<p class="text-gray-300 mb-4">Convert addresses to coordinates and vice versa.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-green-500 bg-opacity-20 text-green-300 px-3 py-1 rounded-full">FREE</span>
<button class="text-blue-400 hover:text-blue-300 flex items-center">
Explore <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</button>
</div>
</div>
</div>
</section>
</main>
<footer class="glass-card py-8 mt-12">
<div class="container mx-auto px-6 text-center">
<p class="text-gray-300 mb-4">
Yes! We're completely free and unlimited to use. Forever.
</p>
<div class="flex justify-center space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="mail"></i>
</a>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js globe effect
VANTA.GLOBE({
el: "#interactive-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3a86ff,
backgroundColor: 0x0
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>