Files
jackwener__opencli/docs/adapters/browser/binance.md
Ivan Xia 20e024a001 feat(maimai): add talent search with multi-dimensional filters (#977)
* feat(maimai): add talent search with multi-dimensional filters

Add maimai.cn talent search adapter with support for:
- Keyword search (query)
- Company filtering (multiple companies supported)
- School filtering (with 985/211 options)
- Location filtering (province/city)
- Work experience and education level filters
- Industry and position filters
- Direct chat availability
- Sort by relevance, activity, work years, or education

Features:
- Reuses Chrome login session for authentication
- Extracts candidate info: name, job title, company, work history
- Shows work years, education, age, active status
- Displays skill tags and mutual friends count

* fix docs and strategy for maimai adapter

---------

Co-authored-by: jackwener <jakevingoo@gmail.com>
2026-04-12 16:16:55 +08:00

53 lines
1.5 KiB
Markdown

# Binance
Access **Binance** market data from the terminal via the public API (no authentication required).
**Mode**: 🌐 Public · **Domain**: `data-api.binance.vision`
## Commands
| Command | Description |
|---------|-------------|
| `opencli binance price` | Get 24h ticker stats for one symbol |
| `opencli binance prices` | Get latest prices for all symbols |
| `opencli binance ticker` | Get 24h ticker stats for all symbols |
| `opencli binance pairs` | List exchange trading pairs |
| `opencli binance trades` | Get recent trades for one symbol |
| `opencli binance depth` | Get order-book depth for one symbol |
| `opencli binance asks` | Show ask-side depth for one symbol |
| `opencli binance klines` | Get candlestick data |
| `opencli binance top` | Show top movers by volume |
| `opencli binance gainers` | Show top gainers |
| `opencli binance losers` | Show top losers |
## Usage Examples
```bash
# One symbol, 24h stats
opencli binance price BTCUSDT
# Latest prices for all pairs
opencli binance prices
# Recent trades
opencli binance trades BTCUSDT --limit 20
# Order-book depth
opencli binance depth BTCUSDT --limit 20
# 1h candles
opencli binance klines BTCUSDT --interval 1h --limit 50
# JSON output
opencli binance top -f json
```
## Prerequisites
- No browser required — uses Binance public market-data endpoints
## Notes
- Symbols use Binance market format such as `BTCUSDT` or `ETHUSDT`
- Public market-data endpoints can still be rate-limited upstream; retry if you hit transient failures