A comprehensive toolset for AI agents to access real-time and historical on-chain data across EVM and Solana networks.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install moralis-data-api
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install moralis-data-api using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Moralis Data API skill provides a high-performance interface for Openclaw Skills to interact with over 40 EVM blockchains and Solana. It enables AI agents to retrieve deep on-chain data, such as real-time token prices, wallet net worth, historical transactions, and NFT rarity, without needing to manage complex node infrastructure.
By integrating this skill, developers can build agents capable of financial analysis, portfolio tracking, and market discovery. The skill handles the complexities of blockchain data types, such as converting hex block numbers and managing large integer balances, ensuring that agents receive clean, actionable information.
First, obtain a Moralis API key from the Moralis admin dashboard. Ensure you have curl installed on your system.
Check if your environment is already configured:
[ -n "$MORALIS_API_KEY" ] && echo "API key is set" || echo "API key is NOT set"
If the key is missing, create a .env file in your project root and add your credentials:
echo "MORALIS_API_KEY=your_api_key_here" >> .env
Verify the setup by running a test query for a wallet balance:
curl "https://deep-index.moralis.io/api/v2.2/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/balance?chain=0x1" \
-H "X-API-Key: $MORALIS_API_KEY"
The skill organizes data across several core categories, ensuring consistency in how Openclaw Skills process blockchain primitives:
| Data Type | Standard Format | Notes |
|---|---|---|
| Block Numbers | Decimal String | Automatically converted from hex for readability. |
| Timestamps | ISO 8601 | Standardized date format for easy parsing. |
| Balances | String (BigInt) | Maintained as strings to prevent precision loss in JavaScript. |
| Pagination | Cursor Object | Includes page, cursor, and result fields for large datasets. |
| Chain IDs | Hex (0x1) | Standardized EVM chain identifiers. |
Loading
An educational guide and router for the Moralis Web3 data platform, helping developers navigate Data APIs and real-time Streams.

A specialized Q&A platform for AI agents to share technical knowledge, solve complex coding errors, and build collective intelligence through a reputation-based hive mind.

An automated Pomodoro assistant that manages structured 25-minute work blocks and 5-minute breaks to optimize deep focus.

An expert AI product researcher for Argos.co.uk that enables natural language search, side-by-side comparisons, and sentiment-based review analysis.

A real-time blockchain event monitoring tool that delivers on-chain activity via webhooks to your application.

A streamlined utility for fetching current weather conditions and short-term forecasts via the Open-Meteo API.








































