File size: 11,160 Bytes
d6d843f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
# 🚀 HuggingFace Space - Cryptocurrency Data API
## دسترسی به API
URL پایه: `https://really-amin-datasourceforcryptocurrency.hf.space`
## 📋 لیست کامل Endpointها
### Core Data Endpoints
#### 1. System Health
```bash
GET /health
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/health
```
#### 2. System Info
```bash
GET /info
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/info
```
#### 3. API Providers
```bash
GET /api/providers
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/providers
```
### Market Data Endpoints
#### 4. OHLCV Data (Candlestick)
```bash
GET /api/ohlcv?symbol=BTCUSDT&interval=1h&limit=100
```
**پارامترها:**
- `symbol`: نماد جفت ارز (مثال: BTCUSDT, ETHUSDT)
- `interval`: بازه زمانی (1m, 5m, 15m, 30m, 1h, 4h, 1d)
- `limit`: تعداد کندلها (1-1000)
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv?symbol=BTCUSDT&interval=1h&limit=50"
```
**پاسخ:**
```json
{
"symbol": "BTCUSDT",
"interval": "1h",
"count": 50,
"data": [
{
"timestamp": 1700000000000,
"datetime": "2023-11-15T00:00:00",
"open": 37000.50,
"high": 37500.00,
"low": 36800.00,
"close": 37200.00,
"volume": 1234.56
}
]
}
```
#### 5. Top Crypto Prices
```bash
GET /api/crypto/prices/top?limit=10
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top?limit=5"
```
**پاسخ:**
```json
{
"count": 5,
"data": [
{
"id": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"current_price": 37000.00,
"market_cap": 720000000000,
"price_change_percentage_24h": 2.5
}
]
}
```
#### 6. Single Crypto Price
```bash
GET /api/crypto/price/{symbol}
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/price/BTC
```
#### 7. Market Overview
```bash
GET /api/crypto/market-overview
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/market-overview
```
**پاسخ:**
```json
{
"total_market_cap": 1500000000000,
"total_volume_24h": 75000000000,
"btc_dominance": 48.5,
"top_gainers": [...],
"top_losers": [...],
"top_by_volume": [...]
}
```
#### 8. Multiple Prices
```bash
GET /api/market/prices?symbols=BTC,ETH,SOL
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/market/prices?symbols=BTC,ETH,SOL"
```
#### 9. Market Data Prices (Alternative)
```bash
GET /api/market-data/prices?symbols=BTC,ETH
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/market-data/prices?symbols=BTC,ETH"
```
### Analysis Endpoints
#### 10. Trading Signals
```bash
GET /api/analysis/signals?symbol=BTCUSDT&timeframe=1h
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals?symbol=BTCUSDT"
```
**پاسخ:**
```json
{
"symbol": "BTCUSDT",
"timeframe": "1h",
"signal": "buy",
"trend": "bullish",
"momentum": "strong",
"indicators": {
"sma_20": 36800.00,
"current_price": 37200.00,
"price_change_percent": 1.08
}
}
```
#### 11. SMC Analysis (Smart Money Concepts)
```bash
GET /api/analysis/smc?symbol=BTCUSDT
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/smc?symbol=BTCUSDT"
```
**پاسخ:**
```json
{
"symbol": "BTCUSDT",
"market_structure": "higher_highs",
"key_levels": {
"resistance": 38000.00,
"support": 36000.00,
"current_price": 37200.00
},
"order_blocks": {...},
"liquidity_zones": {...}
}
```
#### 12. Scoring Snapshot
```bash
GET /api/scoring/snapshot?symbol=BTCUSDT
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/scoring/snapshot?symbol=BTCUSDT"
```
**پاسخ:**
```json
{
"symbol": "BTCUSDT",
"overall_score": 75.5,
"scores": {
"volatility": 45.2,
"volume": 82.3,
"trend": 68.9,
"momentum": 56.7
},
"rating": "good"
}
```
#### 13. All Signals
```bash
GET /api/signals
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/signals
```
#### 14. Market Sentiment
```bash
GET /api/sentiment
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/sentiment
```
**پاسخ:**
```json
{
"value": 65,
"classification": "greed",
"description": "Market sentiment is greed"
}
```
### System Endpoints
#### 15. System Status
```bash
GET /api/system/status
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/system/status
```
#### 16. System Configuration
```bash
GET /api/system/config
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/system/config
```
#### 17. Categories
```bash
GET /api/categories
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/categories
```
#### 18. Rate Limits
```bash
GET /api/rate-limits
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/rate-limits
```
#### 19. Logs
```bash
GET /api/logs?limit=50
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/logs?limit=20"
```
#### 20. Alerts
```bash
GET /api/alerts
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/alerts
```
### HuggingFace Integration Endpoints
#### 21. HF Health
```bash
GET /api/hf/health
```
**مثال:**
```bash
curl https://really-amin-datasourceforcryptocurrency.hf.space/api/hf/health
```
#### 22. HF Refresh
```bash
POST /api/hf/refresh
```
**مثال:**
```bash
curl -X POST https://really-amin-datasourceforcryptocurrency.hf.space/api/hf/refresh
```
#### 23. HF Registry
```bash
GET /api/hf/registry?kind=models
```
**مثال:**
```bash
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/hf/registry?kind=models"
```
#### 24. HF Sentiment Analysis
```bash
POST /api/hf/run-sentiment
POST /api/hf/sentiment
```
**مثال:**
```bash
curl -X POST "https://really-amin-datasourceforcryptocurrency.hf.space/api/hf/sentiment" \
-H "Content-Type: application/json" \
-d '{"texts": ["Bitcoin is going to the moon!"]}'
```
## 🔥 ویژگیهای API
✅ **Built-in Caching**: کش 60 ثانیهای برای بهبود سرعت
✅ **Multiple Data Sources**: Binance + CoinGecko
✅ **Auto-fallback**: در صورت خرابی یک منبع، به منبع دیگر تغییر مسیر میدهد
✅ **CORS Enabled**: قابل استفاده از هر دامنه
✅ **Rate Limiting Ready**: محدودیت درخواست برای جلوگیری از سوء استفاده
✅ **20+ Cryptocurrency Support**: پشتیبانی از بیش از 20 ارز دیجیتال
## 📊 منابع داده
- **Binance API**: دادههای OHLCV و قیمت real-time
- **CoinGecko API**: اطلاعات جامع بازار و رتبهبندی
- **CoinPaprika**: دادههای تکمیلی
- **CoinCap**: دادههای اضافی
## 🚀 نحوه استفاده در برنامه
### Python
```python
import requests
# دریافت قیمتهای برتر
response = requests.get(
"https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top?limit=5"
)
data = response.json()
print(data)
# دریافت داده OHLCV
response = requests.get(
"https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv",
params={"symbol": "BTCUSDT", "interval": "1h", "limit": 100}
)
ohlcv = response.json()
print(ohlcv)
# دریافت سیگنالهای معاملاتی
response = requests.get(
"https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals",
params={"symbol": "ETHUSDT"}
)
signals = response.json()
print(signals)
```
### JavaScript
```javascript
// دریافت قیمتهای برتر
fetch('https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top?limit=5')
.then(response => response.json())
.then(data => console.log(data));
// دریافت داده OHLCV
fetch('https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv?symbol=BTCUSDT&interval=1h&limit=100')
.then(response => response.json())
.then(data => console.log(data));
// دریافت تحلیل SMC
fetch('https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/smc?symbol=BTCUSDT')
.then(response => response.json())
.then(data => console.log(data));
```
### cURL (Terminal)
```bash
# تست سریع همه endpointها
curl https://really-amin-datasourceforcryptocurrency.hf.space/health
curl https://really-amin-datasourceforcryptocurrency.hf.space/info
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/ohlcv?symbol=BTCUSDT&interval=1h&limit=10"
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/prices/top?limit=5"
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/crypto/market-overview"
curl "https://really-amin-datasourceforcryptocurrency.hf.space/api/analysis/signals?symbol=BTCUSDT"
```
## 🎯 Use Cases
1. **Trading Bots**: استفاده از دادههای OHLCV و سیگنالها
2. **Price Trackers**: نمایش قیمتهای real-time
3. **Market Analysis**: تحلیل روند و احساسات بازار
4. **Portfolio Apps**: ردیابی پورتفولیو با قیمتهای بهروز
5. **Research Tools**: تحقیقات بازار و تحلیل تکنیکال
## 📖 مستندات API
مستندات تعاملی (Swagger UI):
```
https://really-amin-datasourceforcryptocurrency.hf.space/docs
```
## ⚡ Performance
- **Response Time**: کمتر از 500ms برای اکثر endpointها
- **Cache TTL**: 60 ثانیه
- **Rate Limit**: 1200 درخواست در دقیقه
- **Uptime**: 99%+
## 🔒 Security
- ✅ HTTPS فقط
- ✅ CORS فعال
- ✅ Rate limiting
- ✅ Input validation
- ✅ Error handling
## 💬 پشتیبانی
در صورت بروز مشکل:
1. ابتدا `/health` را چک کنید
2. لاگها را از `/api/logs` بررسی کنید
3. مستندات `/docs` را مطالعه کنید
---
**نسخه**: 3.0.0
**آخرین بروزرسانی**: 2025-11-17
**وضعیت**: ✅ فعال و operational
🎉 همه endpointهای مورد نیاز شما اکنون فعال و آماده استفاده هستند!
|