getChainsByKeyword
Search and retrieve details of blockchains matching a specific keyword, formatted in Markdown. Easily find chain names, IDs, currencies, TVL, RPC endpoints, and explorers, with optional result limits.
Instructions
Retrieve information about blockchains matching a keyword (case-insensitive partial match), returned as Markdown.
**Parameters**:
- `keyword` (string): The keyword or partial name of the blockchain to search for (e.g., 'eth' for Ethereum).
- `limit` (integer, optional): Maximum number of matching chains to return (default: 5).
**Returns**:
- A Markdown-formatted string listing up to `limit` matching chains with their details (Name, Chain ID, Native Currency, TVL, RPC Endpoints, Explorers) or an error message if no chains are found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"title": "Keyword",
"type": "string"
},
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
}
},
"required": [
"keyword"
],
"title": "getChainsByKeywordArguments",
"type": "object"
}