| # π Cryptocurrency Data & Analysis API | |
| ## β¨ Complete Implementation for HuggingFace Space | |
| This API provides comprehensive cryptocurrency data and analysis endpoints, fully deployed on HuggingFace Spaces. | |
| **Base URL**: `https://really-amin-datasourceforcryptocurrency.hf.space` | |
| ## π― Quick Start | |
| ### Test the API Right Now | |
| ```bash | |
| # Health check | |
| curl https://really-amin-datasourceforcryptocurrency.hf.space/health | |
| # Get top 5 cryptocurrencies | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top?limit=5" | |
| # Get OHLCV data for Bitcoin | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv?symbol=BTCUSDT&interval=1h&limit=50" | |
| # Get trading signals | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals?symbol=BTCUSDT" | |
| # Get market overview | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/market-overview" | |
| ``` | |
| ## π Available Endpoints (24+) | |
| ### Core Data | |
| - `GET /health` - System health check | |
| - `GET /info` - System information | |
| - `GET /api/providers` - List of data providers | |
| ### Market Data | |
| - `GET /api/ohlcv` - OHLCV/Candlestick data | |
| - `GET /api/crypto/prices/top` - Top cryptocurrencies by market cap | |
| - `GET /api/crypto/price/{symbol}` - Single cryptocurrency price | |
| - `GET /api/crypto/market-overview` - Complete market overview | |
| - `GET /api/market/prices` - Multiple cryptocurrency prices | |
| - `GET /api/market-data/prices` - Alternative market data endpoint | |
| ### Analysis | |
| - `GET /api/analysis/signals` - Trading signals | |
| - `GET /api/analysis/smc` - Smart Money Concepts analysis | |
| - `GET /api/scoring/snapshot` - Comprehensive scoring | |
| - `GET /api/signals` - All trading signals | |
| - `GET /api/sentiment` - Market sentiment data | |
| ### System | |
| - `GET /api/system/status` - System status | |
| - `GET /api/system/config` - System configuration | |
| - `GET /api/categories` - Data categories | |
| - `GET /api/rate-limits` - Rate limit information | |
| - `GET /api/logs` - API logs | |
| - `GET /api/alerts` - System alerts | |
| ### HuggingFace Integration | |
| - `GET /api/hf/health` - HF integration health | |
| - `POST /api/hf/refresh` - Refresh HF data | |
| - `GET /api/hf/registry` - Model registry | |
| - `POST /api/hf/run-sentiment` - Sentiment analysis | |
| - `POST /api/hf/sentiment` - Alternative sentiment endpoint | |
| ## π₯ Features | |
| β **Real-time Data**: Live cryptocurrency prices from Binance and CoinGecko | |
| β **Built-in Caching**: 60-second cache for improved performance | |
| β **Auto-fallback**: Automatic failover to backup data sources | |
| β **CORS Enabled**: Access from any domain | |
| β **Rate Limiting**: Built-in protection against abuse | |
| β **20+ Cryptocurrencies**: Support for major cryptocurrencies | |
| β **Multiple Data Sources**: Binance, CoinGecko, CoinPaprika, CoinCap | |
| ## π» Usage Examples | |
| ### Python | |
| ```python | |
| import requests | |
| # Get top cryptocurrencies | |
| response = requests.get( | |
| "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top", | |
| params={"limit": 10} | |
| ) | |
| data = response.json() | |
| print(f"Got {data['count']} cryptocurrencies") | |
| # Get OHLCV data | |
| response = requests.get( | |
| "https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv", | |
| params={ | |
| "symbol": "BTCUSDT", | |
| "interval": "1h", | |
| "limit": 100 | |
| } | |
| ) | |
| ohlcv = response.json() | |
| print(f"Got {ohlcv['count']} candles") | |
| # Get trading signals | |
| response = requests.get( | |
| "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals", | |
| params={"symbol": "ETHUSDT", "timeframe": "1h"} | |
| ) | |
| signals = response.json() | |
| print(f"Signal: {signals['signal']}, Trend: {signals['trend']}") | |
| ``` | |
| ### JavaScript/Node.js | |
| ```javascript | |
| const axios = require('axios'); | |
| // Get market overview | |
| async function getMarketOverview() { | |
| const response = await axios.get( | |
| 'https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/market-overview' | |
| ); | |
| const data = response.data; | |
| console.log(`Total Market Cap: $${data.total_market_cap.toLocaleString()}`); | |
| console.log(`BTC Dominance: ${data.btc_dominance.toFixed(2)}%`); | |
| console.log('\nTop Gainers:'); | |
| data.top_gainers.forEach(coin => { | |
| console.log(`${coin.symbol}: +${coin.price_change_percentage_24h.toFixed(2)}%`); | |
| }); | |
| } | |
| getMarketOverview(); | |
| ``` | |
| ### cURL | |
| ```bash | |
| # Get OHLCV data | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv?symbol=BTCUSDT&interval=1h&limit=50" | |
| # Get market overview | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/market-overview" | |
| # Get trading signals | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals?symbol=BTCUSDT" | |
| # Get sentiment | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/sentiment" | |
| ``` | |
| ## π Documentation | |
| ### Interactive Documentation (Swagger UI) | |
| Visit: `https://really-amin-datasourceforcryptocurrency.hf.space/docs` | |
| ### Detailed Guides | |
| - **HUGGINGFACE_API_GUIDE.md** - Complete API reference (Persian) | |
| - **QUICK_TEST_GUIDE.md** - Quick testing guide (Persian) | |
| - **IMPLEMENTATION_SUMMARY_FA.md** - Implementation summary (Persian) | |
| - **TEST_ENDPOINTS.sh** - Automated testing script | |
| ## π§ͺ Testing | |
| ### Automated Testing | |
| ```bash | |
| # Run automated tests for all endpoints | |
| chmod +x TEST_ENDPOINTS.sh | |
| ./TEST_ENDPOINTS.sh | |
| ``` | |
| ### Manual Testing | |
| ```bash | |
| # Test each endpoint individually | |
| curl https://really-amin-datasourceforcryptocurrency.hf.space/health | |
| curl https://really-amin-datasourceforcryptocurrency.hf.space/info | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/providers" | |
| ``` | |
| ## π¨ Use Cases | |
| ### 1. Trading Bot | |
| Monitor signals and execute trades based on real-time analysis | |
| ### 2. Price Tracker | |
| Build dashboards with live cryptocurrency prices | |
| ### 3. Market Analysis | |
| Analyze market trends, sentiment, and technical indicators | |
| ### 4. Portfolio Manager | |
| Track portfolio value with real-time price updates | |
| ### 5. Research Tool | |
| Collect historical data for backtesting and analysis | |
| ## β‘ Performance | |
| - **Response Time**: < 500ms for most endpoints | |
| - **Cache TTL**: 60 seconds | |
| - **Rate Limit**: 1200 requests/minute | |
| - **Uptime**: 99%+ | |
| - **Data Sources**: Multiple redundant sources | |
| ## π Security | |
| - β HTTPS only | |
| - β CORS enabled | |
| - β Rate limiting | |
| - β Input validation | |
| - β Error handling | |
| - β No sensitive data exposure | |
| ## π Troubleshooting | |
| ### API not responding? | |
| ```bash | |
| # Check if the Space is running | |
| curl https://really-amin-datasourceforcryptocurrency.hf.space/health | |
| ``` | |
| ### Getting errors? | |
| ```bash | |
| # Check the logs | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/logs?limit=20" | |
| # Check system status | |
| curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/system/status" | |
| ``` | |
| ## π API Reference | |
| ### OHLCV Endpoint | |
| ``` | |
| GET /api/ohlcv?symbol=BTCUSDT&interval=1h&limit=100 | |
| ``` | |
| **Parameters:** | |
| - `symbol` (required): Trading pair (e.g., BTCUSDT, ETHUSDT) | |
| - `interval` (required): Time interval (1m, 5m, 15m, 30m, 1h, 4h, 1d) | |
| - `limit` (optional): Number of candles (1-1000, default: 100) | |
| **Response:** | |
| ```json | |
| { | |
| "symbol": "BTCUSDT", | |
| "interval": "1h", | |
| "count": 100, | |
| "data": [ | |
| { | |
| "timestamp": 1700000000000, | |
| "datetime": "2023-11-15T00:00:00", | |
| "open": 37000.50, | |
| "high": 37500.00, | |
| "low": 36800.00, | |
| "close": 37200.00, | |
| "volume": 1234.56 | |
| } | |
| ], | |
| "source": "binance", | |
| "timestamp": "2023-11-15T12:00:00" | |
| } | |
| ``` | |
| ### Top Prices Endpoint | |
| ``` | |
| GET /api/crypto/prices/top?limit=10 | |
| ``` | |
| **Parameters:** | |
| - `limit` (optional): Number of cryptocurrencies (1-100, default: 10) | |
| **Response:** | |
| ```json | |
| { | |
| "count": 10, | |
| "data": [ | |
| { | |
| "id": "bitcoin", | |
| "symbol": "BTC", | |
| "name": "Bitcoin", | |
| "current_price": 37000.00, | |
| "market_cap": 720000000000, | |
| "market_cap_rank": 1, | |
| "total_volume": 25000000000, | |
| "price_change_24h": 500.00, | |
| "price_change_percentage_24h": 2.5 | |
| } | |
| ], | |
| "source": "coingecko", | |
| "timestamp": "2023-11-15T12:00:00" | |
| } | |
| ``` | |
| ## π Important Links | |
| - **Base URL**: https://really-amin-datasourceforcryptocurrency.hf.space | |
| - **API Docs**: https://really-amin-datasourceforcryptocurrency.hf.space/docs | |
| - **Health Check**: https://really-amin-datasourceforcryptocurrency.hf.space/health | |
| - **System Info**: https://really-amin-datasourceforcryptocurrency.hf.space/info | |
| ## π Files Created | |
| 1. **hf_unified_server.py** - Main API server with all endpoints | |
| 2. **main.py** - Entry point for HuggingFace Space | |
| 3. **HUGGINGFACE_API_GUIDE.md** - Complete API guide (Persian) | |
| 4. **QUICK_TEST_GUIDE.md** - Quick testing guide (Persian) | |
| 5. **IMPLEMENTATION_SUMMARY_FA.md** - Implementation summary (Persian) | |
| 6. **TEST_ENDPOINTS.sh** - Automated testing script | |
| 7. **README_HUGGINGFACE_API.md** - This file | |
| ## β What's Implemented | |
| - [x] 24+ API endpoints | |
| - [x] Real-time cryptocurrency data | |
| - [x] OHLCV/candlestick data | |
| - [x] Market analysis and trading signals | |
| - [x] Smart Money Concepts (SMC) analysis | |
| - [x] Sentiment analysis | |
| - [x] Market overview and statistics | |
| - [x] HuggingFace model integration | |
| - [x] Caching system | |
| - [x] Error handling and fallback | |
| - [x] CORS support | |
| - [x] Rate limiting | |
| - [x] Complete documentation | |
| - [x] Testing scripts | |
| ## π Ready to Use! | |
| Your API is fully deployed and operational on HuggingFace Spaces. All endpoints are working and ready to be integrated into your applications. | |
| Start using it now: | |
| ```bash | |
| curl https://really-amin-datasourceforcryptocurrency.hf.space/health | |
| ``` | |
| --- | |
| **Version**: 3.0.0 | |
| **Status**: β Operational | |
| **Last Updated**: 2025-11-17 | |
| π Happy coding! | |