hl-spot
Hyperliquid Spot API
Hyperliquid SPOTマーケットデータ: 454トークン、ライブ価格、24時間取引量、ウォレット残高。ネイティブL1 DEXデータ、CoinGecko不要。Hyperliquid取引にエージェントが必要とするスポットデータレイヤー。x402による従量課金(Base L2上のUSDC)-- APIキー不要、サインアップ不要、レート制限なし。
klymax402マーケットプレイスの一部 -- AIエージェント向けの100のx402マイクロペイメントAPI、1つのウォレット、Base上のUSDC。
Quickstart -- MCP
MCPクライアント設定(Claude Desktop、Cursor、ElizaOSなど)に追加:
{
"mcpServers": {
"hl-spot": {
"url": "https://hl-spot.api.klymax402.com/mcp"
}
}
}Related MCP server: boo-x402-mcp
Quickstart -- HTTP (x402)
curl -X POST "https://hl-spot.api.klymax402.com/api/tokens" \
-H "Content-Type: application/json" \
-d '{}'
# -> 402 Payment Required, with an x402 payment challenge in the response bodyx402対応クライアント(@x402/fetch、x402-agent-tools、ATXP)は、402 -> 署名 -> 再試行のサイクルを自動的に処理します。
Tools
ツール | メソッド | パス | 価格 | 説明 |
| POST |
| $0.005 | Hyperliquid上の全454スポットトークンをメタデータ(名前、tokenId、インデックス、小数、wei小数)とともに一覧表示します。 |
| POST |
| $0.005 | Hyperliquidの全スポットペアのスポット市場価格、24時間取引量、ミッドプライス、取引ペア情報。 |
| POST |
| $0.005 | Hyperliquid上の任意のウォレットアドレスのスポットトークン残高(保有量と利用可能量を含む)。 |
hyperliquid_list_spot_tokens
Hyperliquid L1 DEXで利用可能なスポットトークンを一覧表示または検索する必要がある場合に使用します。トークン名、シンボル、tokenId、インデックス、小数、wei変換係数を含む完全なメタデータを持つ全454スポットトークンを返します。
パラメータ
名前 | 型 | 必須 | 説明 |
| string | no | オプションのフィルター: 名前またはシンボルでトークンを検索(大文字小文字を区別しない部分一致)。省略すると全454トークンを返します。 |
レスポンス例:
{ tokens: [{ name: "PURR", tokenId: "0xc4bf3f...", index: 1, decimals: 0, weiDecimals: 8 }], count: 454 }対象外: 先物/無期限契約データ(hyperliquid_get_perp_marketsを使用)、CEX/CoinGeckoのトークン価格(token_get_priceを使用)、チェーン間のウォレットポートフォリオ(wallet_get_portfolioを使用)、Hyperliquidボールトデータ(hyperliquid_get_vaultsを使用)。
hyperliquid_get_spot_markets
Hyperliquid DEXからライブのスポット市場データ(価格、24時間取引量、全スポットペアの取引活動)が必要な場合に使用します。アクティブな各スポット市場について、トークンメタデータとリアルタイムの市場コンテキストを統合して返します。
パラメータ
名前 | 型 | 必須 | 説明 |
| string | no | 結果の並び順。'volume' = 24時間取引量の多い順(デフォルト)、'change' = 価格変動の大きい順、'name' = アルファベット順。 |
レスポンス例:
{ markets: [{ name: "PURR/USDC", markPx: "0.0234", dayNtlVlm: "1250000", change24h: 5.32 }], count: 120 }対象外: 先物/無期限契約市場(hyperliquid_get_perp_marketsを使用)、CoinGecko価格(token_get_priceを使用)、資金調達率(hyperliquid_get_funding_ratesを使用)、過去のOHLCVローソク足(token_get_ohlcvを使用)。
hyperliquid_get_spot_balances
Hyperliquid L1 DEX上の特定のウォレットアドレスのスポットトークン残高を確認する必要がある場合に使用します。利用可能量と保有量(注文中)を含む、ゼロ以外のすべてのスポットトークン保有を返します。
パラメータ
名前 | 型 | 必須 | 説明 |
| string | yes | 0x形式のウォレットアドレス(42文字)。例: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 |
レスポンス例:
{ address: "0xabc...", balances: [{ coin: "PURR", total: "15000", hold: "5000", available: "10000", entryNtl: "350.50" }], count: 3 }対象外: 先物ポジション(hyperliquid_get_perp_positionsを使用)、Hyperliquidボールト残高(hyperliquid_get_vaultsを使用)、EVMトークン残高(token_get_balanceを使用)。
エージェントプロンプトの例
"Hyperliquid L1 DEXで利用可能なスポットトークンを一覧表示または検索"
"Hyperliquid DEXからのライブスポット市場データ: 全スポットペアの価格、24時間取引量、取引活動"
"Hyperliquid L1 DEX上の特定のウォレットアドレスのスポットトークン残高を確認"
支払い
プロトコル: x402 -- HTTPネイティブの従量課金、サインアップ不要、APIキー不要
ネットワーク: Base L2 (
eip155:8453)資産: USDC
ファシリテーター: Coinbase CDP(プライマリ)、PayAI(フォールバック)
ATXP経由でもアクセス可能(OAuthでラップされたx402、RFC 9728保護リソースメタデータ)
klymax402の一部
AIエージェント向けの100のx402マイクロペイメントAPI -- 1つのウォレット、Base上のUSDC、サインアップ不要。
完全なAPIリファレンス: https://klymax402.com/llms-full.txt
ライブ統計: https://klymax402.com/stats
ライセンス
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceReal-time crypto intelligence for AI agents. Technical analysis, liquidation heatmaps, sentiment, and funding rates for 50+ Hyperliquid perpetuals via x402 micropayments.151MIT
- AlicenseAqualityCmaintenanceEnables AI agents to access crypto/web3 data across 5 chains with pay-per-call billing in USDC via x402, no API key required, and built-in spend caps.3636MIT
- AlicenseAqualityBmaintenanceRead-only Hyperliquid and cross-exchange market research for AI agents, providing structured tools for live market data without requiring authentication.961MIT
- AlicenseNot gradedqualityCmaintenanceProvides real-time crypto market data for AI agents, including derivatives, liquidations, options, macro, and market regime detection, with pay-per-call via x402 micropayments on Base.58MIT
Related MCP Connectors
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
Crypto data for AI agents via x402. 31 tools, 4 free. Recorded history, anchored daily on Base.
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Br0ski777/hl-spot-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server