RESTful API for accessing testnet faucet data across 8+ blockchain networks
Primary Domain:
https://faucethub.elpeef.com/apiAlternative Domain:
https://relationship-government-307.app.ohara.ai/api// Fetch all faucets
const response = await fetch('https://faucethub.elpeef.com/api/faucets');
const { data, count } = await response.json();
console.log(`Found ${count} faucets`);
data.forEach(faucet => {
console.log(`${faucet.name} - ${faucet.network}`);
});/faucetsnetworkFilter by network (e.g., base-sepolia)
qSearch query for faucet name/description
actionSpecial actions: stats, networks
{
"success": true,
"data": [
{
"id": "ponzifun-base",
"name": "Ponzifun Base Faucet",
"url": "https://faucet.ponzifun.dev/",
"network": "base-sepolia",
"chain": "Base Sepolia",
"tokens": [
"ETH"
],
"cooldown": "48 hours",
"requirements": [
"No signup required"
],
"verified": true,
"recommended": true,
"rating": 4.8,
"responseTime": 250
}
],
"count": 22
}// Get all faucets
const response = await fetch('https://faucethub.elpeef.com/api/faucets');
const data = await response.json();
console.log(data.data); // Array of 22+ faucets/faucets?network=base-sepolia{
"success": true,
"data": [],
"count": 6
}// Get Base Sepolia faucets only
const response = await fetch('https://faucethub.elpeef.com/api/faucets?network=base-sepolia');
const baseFaucets = await response.json();/faucets?q=alchemy{
"success": true,
"data": [],
"count": 1
}// Search for specific faucet
const response = await fetch('https://faucethub.elpeef.com/api/faucets?q=alchemy');
const results = await response.json();/faucets?action=stats{
"success": true,
"data": {
"totalFaucets": 22,
"totalNetworks": 8,
"averageCooldown": "24 hours",
"verifiedFaucets": 22
}
}// Get faucet statistics
const response = await fetch('https://faucethub.elpeef.com/api/faucets?action=stats');
const stats = await response.json();
console.log(stats.data.totalFaucets); // 22/faucets?action=networks{
"success": true,
"data": [
"base-sepolia",
"ethereum-sepolia",
"optimism-sepolia",
"arbitrum-sepolia",
"polygon-amoy",
"avalanche-fuji",
"bsc-testnet",
"scroll-sepolia"
]
}// Get all networks
const response = await fetch('https://faucethub.elpeef.com/api/faucets?action=networks');
const networks = await response.json();/health{
"status": "healthy",
"timestamp": "2024-01-01T00:00:00.000Z"
}// Health check
const response = await fetch('https://faucethub.elpeef.com/api/health');
const health = await response.json();base-sepoliaethereum-sepoliaoptimism-sepoliaarbitrum-sepoliapolygon-amoyavalanche-fujibsc-testnetscroll-sepolia✓ No Authentication Required
The API is completely free and open - no API keys needed
⚡ No Rate Limits (Currently)
Fair usage expected - excessive requests may be throttled in the future
🔄 Real-time Updates
Faucet data is updated regularly with new additions and removals