wallet-portfolio
Wallet Portfolio Tracker API
Vollständige Krypto-Wallet-Bestände über mehrere Chains -- ETH, ERC-20-Token, USD-Werte. Portfolio-Tracking für Agenten. Pay-per-Call über x402 (USDC auf Base L2) -- kein API-Schlüssel, keine Anmeldung, keine Rate-Limit-Barriere.
Teil des klymax402 Marktplatzes -- 100 x402-Mikrozahlungs-APIs für KI-Agenten, eine Wallet, USDC auf Base.
Schnellstart -- MCP
Fügen Sie dies zu Ihrer MCP-Client-Konfiguration hinzu (Claude Desktop, Cursor, ElizaOS usw.):
{
"mcpServers": {
"wallet-portfolio": {
"url": "https://wallet-portfolio.api.klymax402.com/mcp"
}
}
}Related MCP server: AgentWallet MCP Server
Schnellstart -- HTTP (x402)
curl "https://wallet-portfolio.api.klymax402.com/api/portfolio?address=0x0000000000000000000000000000000000dEaD"
# -> 402 Payment Required, with an x402 payment challenge in the response bodyJeder x402-fähige Client (@x402/fetch, x402-agent-tools, ATXP) übernimmt den 402 -> Sign -> Retry-Zyklus automatisch.
Werkzeuge
Tool | Method | Path | Price | Description |
| GET |
| $0.008 | Vollständiges Portfolio mit allen Token-Beständen und USD-Werten abrufen |
| POST |
| $0.008 | Vollständiges Portfolio mit allen Token-Beständen und USD-Werten abrufen (POST-Variante) |
| GET |
| $0.003 | Nur ETH- und USDC-Guthaben abrufen |
| POST |
| $0.003 | Nur ETH- und USDC-Guthaben abrufen (POST-Variante) |
wallet_get_portfolio
Verwenden Sie dies, wenn Sie die Bestände einer Krypto-Wallet über mehrere Chains prüfen müssen. Gibt eine vollständige Portfolio-Aufschlüsselung im JSON-Format zurück.
Parameter
Name | Type | Required | Description |
| string | yes | Wallet-Adresse (0x...) |
| string | no | Blockchain-Netzwerk (Standard: base) |
Rückgabewerte
nativeBalance-- ETH-Guthaben mit USD-Werttokens-- Array von ERC-20-Token mit Symbol, Guthaben, USD-Wert, VertragsadressetotalValueUsd-- aggregierter Portfolio-Wert in USDchain-- welches Netzwerk abgefragt wurde
Beispielantwort:
{"nativeBalance":{"symbol":"ETH","balance":"1.234","valueUsd":3827.50},"tokens":[{"symbol":"USDC","balance":"500.00","valueUsd":500.00}],"totalValueUsd":4327.50,"chain":"base"}Wann verwenden: Ausführung eines Swaps, um zu überprüfen, ob das Wallet ausreichend Guthaben hat. Unverzichtbar für Portfolio-Tracking, Guthabenprüfungen und Selbstberichte von Agenten.
Nicht für: Gaspreise (verwenden Sie gas_get_current_price), Swap-Angebote (verwenden Sie dex_get_swap_quote), Renditemöglichkeiten (verwenden Sie defi_find_best_yields).
wallet_get_portfolio
Verwenden Sie dies, wenn Sie die Bestände einer Krypto-Wallet über mehrere Chains prüfen müssen. Gibt eine vollständige Portfolio-Aufschlüsselung im JSON-Format zurück.
Parameter
Name | Type | Required | Description |
| string | yes | Wallet-Adresse (0x...) |
| string | no | Blockchain-Netzwerk (Standard: base) |
Rückgabewerte
nativeBalance-- ETH-Guthaben mit USD-Werttokens-- Array von ERC-20-Token mit Symbol, Guthaben, USD-Wert, VertragsadressetotalValueUsd-- aggregierter Portfolio-Wert in USDchain-- welches Netzwerk abgefragt wurde
Beispielantwort:
{"nativeBalance":{"symbol":"ETH","balance":"1.234","valueUsd":3827.50},"tokens":[{"symbol":"USDC","balance":"500.00","valueUsd":500.00}],"totalValueUsd":4327.50,"chain":"base"}Wann verwenden: Ausführung eines Swaps, um zu überprüfen, ob das Wallet ausreichend Guthaben hat. Unverzichtbar für Portfolio-Tracking, Guthabenprüfungen und Selbstberichte von Agenten.
Nicht für: Gaspreise (verwenden Sie gas_get_current_price), Swap-Angebote (verwenden Sie dex_get_swap_quote), Renditemöglichkeiten (verwenden Sie defi_find_best_yields).
wallet_get_balance
Verwenden Sie dies, wenn Sie nur eine schnelle Überprüfung des ETH- und USDC-Guthabens einer Wallet benötigen. Gibt eine schlanke JSON-Antwort zurück -- günstiger als das vollständige Portfolio.
Parameter
Name | Type | Required | Description |
| string | yes | Wallet-Adresse (0x...) |
| string | no | Blockchain-Netzwerk (Standard: base) |
Rückgabewerte
ethBalance-- natives ETH-Guthaben mit USD-WertusdcBalance-- USDC-Guthaben mit USD-Wertchain-- welches Netzwerk abgefragt wurde
Beispielantwort:
{"ethBalance":{"balance":"2.5","valueUsd":7750.00},"usdcBalance":{"balance":"1000.00","valueUsd":1000.00},"chain":"base"}Wann verwenden: Schnelle Guthabenprüfung vor dem Handel, wenn Sie sich nur für ETH und USDC interessieren. Schneller und günstiger als wallet_get_portfolio.
Nicht für: vollständiges Portfolio mit allen Token (verwenden Sie wallet_get_portfolio), Gaspreise (verwenden Sie gas_get_current_price).
wallet_get_balance
Verwenden Sie dies, wenn Sie nur eine schnelle Überprüfung des ETH- und USDC-Guthabens einer Wallet benötigen. Gibt eine schlanke JSON-Antwort zurück -- günstiger als das vollständige Portfolio.
Parameter
Name | Type | Required | Description |
| string | yes | Wallet-Adresse (0x...) |
| string | no | Blockchain-Netzwerk (Standard: base) |
Rückgabewerte
ethBalance-- natives ETH-Guthaben mit USD-WertusdcBalance-- USDC-Guthaben mit USD-Wertchain-- welches Netzwerk abgefragt wurde
Beispielantwort:
{"ethBalance":{"balance":"2.5","valueUsd":7750.00},"usdcBalance":{"balance":"1000.00","valueUsd":1000.00},"chain":"base"}Wann verwenden: Schnelle Guthabenprüfung vor dem Handel, wenn Sie sich nur für ETH und USDC interessieren. Schneller und günstiger als wallet_get_portfolio.
Nicht für: vollständiges Portfolio mit allen Token (verwenden Sie wallet_get_portfolio), Gaspreise (verwenden Sie gas_get_current_price).
Beispiel-Agenten-Prompts
"Prüfen Sie die Bestände einer Krypto-Wallet über mehrere Chains"
"Prüfen Sie die Bestände einer Krypto-Wallet über mehrere Chains"
"Eine schnelle Überprüfung nur des ETH- und USDC-Guthabens einer Wallet"
Zahlung
Protokoll: x402 -- HTTP-natives Pay-per-Call, keine Anmeldung, kein API-Schlüssel
Netzwerk: Base L2 (
eip155:8453)Asset: USDC
Facilitator: Coinbase CDP (primär), PayAI (Fallback)
Auch erreichbar über ATXP (OAuth-umhülltes x402, RFC 9728 Metadaten für geschützte Ressourcen)
Teil von klymax402
100 x402-Mikrozahlungs-APIs für KI-Agenten -- eine Wallet, USDC auf Base, null Anmeldung.
Katalog: https://klymax402.com/llms.txt
Vollständige API-Referenz: https://klymax402.com/llms-full.txt
Live-Statistiken: https://klymax402.com/stats
Lizenz
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
- AlicenseAqualityDmaintenanceEnables AI agents to retrieve real-time data on wallet DeFi positions, token balances, and NFT holdings across multiple blockchains. It supports hundreds of protocols and provides specialized tools for chain-specific or protocol-specific portfolio analysis.8163MIT
- AlicenseAqualityDmaintenanceProvides permissionless wallet infrastructure for AI agents to manage wallets, sign transactions, and handle tokens across Solana and all EVM-compatible chains. It includes 29 specialized tools for on-chain operations, featuring built-in security guards and automated x402 payment processing without KYC requirements.293343MIT
- AlicenseAqualityCmaintenanceEnables AI agents to fetch live multi-chain portfolio, token info, gas prices, and token prices across Ethereum, Base, Polygon, Arbitrum, and Optimism with a single call. No API key required.4MIT
- 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
Related MCP Connectors
Token swaps and honeypot/rug checks for AI agents on 8 chains, paid per-call in USDC via x402.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base 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/wallet-portfolio-x402'
If you have feedback or need assistance with the MCP directory API, please join our Discord server