Complete API reference with code examples, interactive testing, and detailed endpoint descriptions.
All API requests require authentication using your API key. Include it in the Authorization header.
Get list of supported cryptocurrencies with current prices
{
"data": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"price": 45000.50,
"market_cap": 850000000000,
"volume_24h": 25000000000,
"change_24h": 2.5
}
],
"pagination": {
"total": 1000,
"limit": 100,
"offset": 0
}
}// Get list of supported cryptocurrencies with current prices
fetch('https://api.bibamoney.com/api/v1/cryptocurrencies', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));๐ก Note: This is a demo environment. For production use, please use your actual API key.
// API Configuration const API_BASE_URL = "https://api.bibamoney.com"; const API_KEY = "your_api_key_here";
// Get list of supported cryptocurrencies with current prices
fetch('https://api.bibamoney.com/api/v1/cryptocurrencies', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));Test our API endpoints directly from your browser. Enter your API key and try out different requests.
๐ก Note: You need an API key to test the endpoints.Get your API key here
Complete information about our API keys, rate limits, update frequencies, and data sources for developers and traders.
Start building with our powerful API and take your trading applications to the next level.