with one click
1m-trade-news
Querying crypto news, newsflashes, articles, search, and on-chain market data (ETF flows, stablecoin supply, derivatives OI, M2, DXY, Bitfinex long positions, and more). Requires BLOCKBEATS_API_KEY.
Querying crypto news, newsflashes, articles, search, and on-chain market data (ETF flows, stablecoin supply, derivatives OI, M2, DXY, Bitfinex long positions, and more). Requires BLOCKBEATS_API_KEY.
A curated collection of 1609+ best OpenClaw skills โ AI tools, productivity, marketing, frontend, mobile, backend, DevOps and more. Weekly updated by MyClaw.ai โ Powered by MyClaw.ai
Integrated on-chain operations hub: integrates BlockBeats market intelligence, Hyperliquid DEX trading via `hl1m`, wallet creation and management at https://www.1m-trade.com, and supports local initialization using `hl1m init-wallet` (wallet address + proxy private key, never use the main wallet private key). Supports fully autonomous AI trading.
Hyperliquid DEX/Perps entrypoint via `hl1m`: market queries, order placement. Wallet creation/management at https://www.1m-trade.com; local `hl1m init-wallet` with address + proxy (API) private key โ never the main wallet key. No in-skill private-key messaging.
Create EVM wallets, automate funding/bridging to Hyperliquid L1, and activate accounts (auto swap, bridging, and L1 activation).
Real-time monitoring of Greek AADE tax authority systems โ tracks deadlines, rate changes, and compliance updates. File-based, OpenClaw-native.
When the user wants to create or update their product marketing context document. Also use when the user mentions 'product context,' 'service context,' 'marketing context,' 'set up context,' 'positioning,' 'who is my target audience,' 'describe my product,' 'describe my service,' 'ICP,' 'ideal customer profile,' or wants to avoid repeating foundational information across marketing tasks. Works for products, services, or hybrid offerings โ B2B and B2C. Use this at the start of any new project before using other marketing skills โ it creates `.agents/product-marketing-context.md` that all other skills reference for offering, audience, and positioning context.
| name | 1m-trade-news |
| description | Querying crypto news, newsflashes, articles, search, and on-chain market data (ETF flows, stablecoin supply, derivatives OI, M2, DXY, Bitfinex long positions, and more). Requires BLOCKBEATS_API_KEY. |
| metadata | {"openclaw":{"emoji":"๐ฐ","requires":{"env":["BLOCKBEATS_API_KEY"],"bins":["curl"]},"primaryEnv":"BLOCKBEATS_API_KEY","os":["darwin","linux","win32"],"tags":["crypto","news","market-data","on-chain","defi"]},"version":"2.2.0"} |
Query crypto newsflashes, articles, search, and on-chain/market datasets via the BlockBeats Pro API.
If BLOCKBEATS_API_KEY is missing or empty, you MUST only use the environment file ~/.openclaw/.1m-trade/.env to store/read it. Do NOT read or touch any other files.
~/.openclaw/.1m-trade/.env for BLOCKBEATS_API_KEY.BLOCKBEATS_API_KEY is missing or empty:
curl --request GET --url "https://api-pro.theblockbeats.info/v1/api-key/free"
data.api_key as BLOCKBEATS_API_KEY.~/.openclaw/.1m-trade/.env, ONLY update the BLOCKBEATS_API_KEY entry:
BLOCKBEATS_API_KEY=<api_key>BLOCKBEATS_API_KEY as the value for the request header api-key: $BLOCKBEATS_API_KEY.https://api-pro.theblockbeats.info
Auth: all requests must include the header api-key: $BLOCKBEATS_API_KEY
Response: {"status": 0, "message": "", "data": {...}} โ status == 0 means successTriggers: "how is the market today", "market snapshot", "daily overview", etc.
Run the following 4 requests in parallel:
# 1) Bottom/top indicator (sentiment)
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/bottom_top_indicator"
# 2) Important newsflashes (latest 5)
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/newsflash/important" \
-G --data-urlencode "size=5" --data-urlencode "lang=cn"
# 3) BTC ETF net flow
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/btc_etf"
# 4) Daily on-chain tx volume
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/daily_tx"
Output format:
๐ Market Snapshot ยท [Today]
Sentiment indicator: [value] โ [<20 potential buy zone / 20โ80 neutral / >80 potential sell zone]
BTC ETF: net flow today [value] USD (M), cumulative [value] USD (M)
On-chain tx volume: [value] (vs yesterday [โ/โ][%])
Important news:
ยท [title 1] [time]
ยท [title 2] [time]
ยท [title 3] [time]
Interpretation rules:
Triggers: "where is money flowing", "on-chain hotspots", "stablecoins", "smart money", etc.
Run in parallel:
# 1) Top 10 net inflow tokens (default: solana; use Base/ETH if mentioned)
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/top10_netflow" \
-G --data-urlencode "network=solana"
# 2) Stablecoin market cap
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/stablecoin_marketcap"
# 3) BTC ETF net flow
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/btc_etf"
network values: solana (default) / base / ethereum
Output format:
๐ฐ Fund Flow Analysis
On-chain trending ([network]):
1. [token] net inflow $[value] mcap $[value]
2. ...
Stablecoins: USDT [โ/โ] USDC [โ/โ] (expansion / contraction)
Institutional: ETF today [in/out] [value] USD (M)
Interpretation rules:
Triggers: "macro", "liquidity", "US rates", "USD", "is it a good entry", etc.
Run in parallel:
# 1) US 10Y yield
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/us10y" \
-G --data-urlencode "type=1M"
# 2) DXY
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/dxy" \
-G --data-urlencode "type=1M"
# 3) Compliant exchanges total assets
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/compliant_total"
Output format:
๐ Macro Environment
US 10Y yield: [value]% โ [up/down]
DXY: [value] โ [strong/weak]
Compliant exchanges assets: $[value] โ [inflow/outflow]
Overall: [bullish/neutral/bearish] for crypto
Interpretation rules:
Triggers: "derivatives", "open interest", "Binance/Bybit", "leverage risk", etc.
Run in parallel:
# 1) Major venues comparison
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/contract" \
-G --data-urlencode "dataType=1D"
# 2) Exchange snapshot
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/exchanges" \
-G --data-urlencode "size=10"
# 3) Bitfinex BTC long positions
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/data/bitfinex_long" \
-G --data-urlencode "symbol=btc" --data-urlencode "type=1D"
Output format:
โก Derivatives Market
Major venues OI:
Binance [value] Bybit [value] Hyperliquid [value]
Exchange ranking (by volume):
1. [name] volume $[value] OI $[value]
2. ...
Bitfinex BTC longs: [value] โ [up/down] (leveraged long sentiment [strong/weak])
Interpretation rules:
Triggers: "search [keyword]", "find [keyword]", "[keyword] news", etc.
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/search" \
-G --data-urlencode "name=[keyword]" --data-urlencode "size=10" --data-urlencode "lang=cn"
Returned fields: title, abstract, content (plain text), type (0=article, 1=newsflash), time_cn (relative time), url
page/size/lang)| Endpoint | URL |
|---|---|
| All newsflashes | GET /v1/newsflash |
| Important newsflashes | GET /v1/newsflash/important |
| Original newsflashes | GET /v1/newsflash/original |
| First-release newsflashes | GET /v1/newsflash/first |
| On-chain newsflashes | GET /v1/newsflash/onchain |
| Financing newsflashes | GET /v1/newsflash/financing |
| Prediction-market newsflashes | GET /v1/newsflash/prediction |
| Meme newsflashes | GET /v1/newsflash/meme |
| AI newsflashes | GET /v1/newsflash/ai |
curl -s -H "api-key: $BLOCKBEATS_API_KEY" \
"https://api-pro.theblockbeats.info/v1/newsflash/[type]" \
-G --data-urlencode "page=1" --data-urlencode "size=10" --data-urlencode "lang=cn"
page/size/lang)| Endpoint | URL |
|---|---|
| All articles | GET /v1/article |
| Important articles | GET /v1/article/important |
| Original articles | GET /v1/article/original |
| Endpoint | URL | Key params |
|---|---|---|
| BTC ETF net flow | GET /v1/data/btc_etf | N/A |
| Daily on-chain tx volume | GET /v1/data/daily_tx | N/A |
| IBIT/FBTC net flow | GET /v1/data/ibit_fbtc | N/A |
| Stablecoin market cap | GET /v1/data/stablecoin_marketcap | N/A |
| Compliant exchanges total assets | GET /v1/data/compliant_total | N/A |
| US 10Y yield | GET /v1/data/us10y | type=1D/1W/1M |
| DXY | GET /v1/data/dxy | type=1D/1W/1M |
| Global M2 supply | GET /v1/data/m2_supply | type=3M/6M/1Y/3Y |
| Bitfinex BTC longs | GET /v1/data/bitfinex_long | symbol=btc type=1D/1W/1M/h24 |
| Major derivatives venues data | GET /v1/data/contract | dataType=1D/1W/1M/3M/6M/12M |
| Bottom/top indicator | GET /v1/data/bottom_top_indicator | N/A |
| Top-10 net inflow | GET /v1/data/top10_netflow | network=solana/base/ethereum |
| Derivatives exchanges snapshot | GET /v1/data/exchanges | name page size |
| User says | Param |
|---|---|
| today / latest / real-time | type=1D or size=5 |
| this week / recent | type=1W |
| this month / last month | type=1M |
| this year / long-term | type=1Y or type=3Y |
| last 24h (bitfinex_long only) | type=h24 |
| User intent | Scenario / endpoint |
|---|---|
| how is the market today / daily overview | Scenario 1: Market snapshot |
| fund flows / on-chain hotspots / smart money | Scenario 2: Fund flow analysis |
| macro / M2 / yields / good entry? | Scenario 3: Macro environment |
| derivatives / open interest / leverage risk | Scenario 4: Derivatives market |
| search [keyword] | Scenario 5: Keyword search |
| latest newsflashes / list newsflashes | GET /v1/newsflash |
| important newsflashes | GET /v1/newsflash/important |
| original newsflashes | GET /v1/newsflash/original |
| first-release newsflashes | GET /v1/newsflash/first |
| on-chain newsflashes | GET /v1/newsflash/onchain |
| financing newsflashes / financing news | GET /v1/newsflash/financing |
| prediction markets / Polymarket | GET /v1/newsflash/prediction |
| meme news | GET /v1/newsflash/meme |
| AI news | GET /v1/newsflash/ai |
| article list | GET /v1/article |
| important articles | GET /v1/article/important |
| original articles | GET /v1/article/original |
| BTC ETF net flow | GET /v1/data/btc_etf |
| IBIT FBTC | GET /v1/data/ibit_fbtc |
| stablecoin market cap / USDT USDC | GET /v1/data/stablecoin_marketcap |
| DXY | GET /v1/data/dxy |
| Bitfinex longs / leverage positioning | GET /v1/data/bitfinex_long |
| bottom/top indicator / sentiment | GET /v1/data/bottom_top_indicator |
| top net inflow tokens / on-chain trending | GET /v1/data/top10_netflow |
| derivatives exchanges ranking | GET /v1/data/exchanges |
| on-chain tx volume / activity | GET /v1/data/daily_tx |
| compliant exchange assets / custody | GET /v1/data/compliant_total |
| Endpoint type | Refresh cadence |
|---|---|
| newsflashes / articles / search | real-time |
| top10_netflow | near real-time |
| btc_etf / ibit_fbtc / daily_tx | daily (T+1) |
| stablecoin_marketcap / compliant_total | daily |
| bottom_top_indicator | daily |
| us10y / dxy | intraday (minute-level) |
| m2_supply | monthly |
| exchanges / contract | daily |
| bitfinex_long | daily (h24 is near real-time) |
| Error | Handling |
|---|---|
BLOCKBEATS_API_KEY missing | Prompt to set BLOCKBEATS_API_KEY (see the key-fetch section above) |
| HTTP 401 | API key invalid/expired |
| HTTP 403 | Plan does not allow access to the endpoint |
status != 0 | Show the message field |
| Timeout | Suggest retry; do not block other parallel requests |
data empty array | Explain likely causes (non-trading day, delay, no data for asset) |
content may contain HTML; strip tags and display plain textcreate_time is a string in Y-m-d H:i:s