hl-spot
Hyperliquid Spot API
Hyperliquid SPOT 시장 데이터: 454개 토큰, 실시간 가격, 24시간 거래량, 지갑 잔액. 네이티브 L1 DEX 데이터, CoinGecko 불필요. 에이전트가 Hyperliquid 거래에 필요한 스팟 데이터 레이어. x402를 통한 호출당 결제 (Base L2의 USDC) -- API 키 없음, 가입 없음, 요금 제한 없음.
klymax402 마켓플레이스의 일부 -- AI 에이전트를 위한 100개의 x402 마이크로결제 API, 하나의 지갑, Base의 USDC.
빠른 시작 -- MCP
MCP 클라이언트 설정에 추가하세요 (Claude Desktop, Cursor, ElizaOS 등):
{
"mcpServers": {
"hl-spot": {
"url": "https://hl-spot.api.klymax402.com/mcp"
}
}
}Related MCP server: boo-x402-mcp
빠른 시작 -- 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 -> 서명 -> 재시도 주기를 자동으로 처리합니다.
도구
도구 | 메서드 | 경로 | 가격 | 설명 |
| POST |
| $0.005 | Hyperliquid의 모든 454개 스팟 토큰을 메타데이터(이름, tokenId, index, decimals, wei decimals)와 함께 나열합니다. |
| POST |
| $0.005 | 모든 Hyperliquid 스팟 페어의 스팟 시장 가격, 24시간 거래량, 중간 가격, 거래 페어 정보를 제공합니다. |
| POST |
| $0.005 | Hyperliquid의 모든 지갑 주소에 대한 스팟 토큰 잔액을 보유 및 사용 가능 수량을 포함해 제공합니다. |
hyperliquid_list_spot_tokens
Hyperliquid L1 DEX에서 사용 가능한 스팟 토큰을 나열하거나 검색해야 할 때 사용합니다. 모든 454개 스팟 토큰을 토큰 이름, 심볼, tokenId, index, decimals, wei 변환 계수를 포함한 전체 메타데이터와 함께 반환합니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| string | 아니요 | 선택적 필터: 이름 또는 심볼로 토큰 검색(대소문자 구분 없는 부분 문자열 일치). 생략하면 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 | 아니요 | 결과 정렬 순서. '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에서 특정 지갑 주소의 스팟 토큰 잔액을 확인해야 할 때 사용합니다. 보유 및 주문 중(보유) 수량을 포함한 모든 0이 아닌 스팟 토큰 보유를 반환합니다.
매개변수
이름 | 유형 | 필수 | 설명 |
| string | 예 | 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 -- 하나의 지갑, 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