search_token_details
Retrieve detailed information about a specific token by searching its address or symbol, sorted and limited for precise results. Part of Armor Crypto MCP for blockchain operations.
Instructions
Search and retrieve details about single token.
If only address or symbol is needed, use get_official_token_address first.
Expects a TokenSearchRequest, returns a list of TokenDetailsResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token_search_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"TokenSearchRequest": {
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "The number of results to return from the search. Use default unless specified. Should not be over 30 if looking up multiple tokens.",
"title": "Limit"
},
"query": {
"description": "token symbol or address",
"title": "Query",
"type": "string"
},
"sort_by": {
"anyOf": [
{
"enum": [
"decimals",
"holders",
"jupiter",
"verified",
"liquidityUsd",
"marketCapUsd",
"priceUsd",
"totalBuys",
"totalSells",
"totalTransactions",
"volume_5m",
"volume",
"volume_15m",
"volume_30m",
"volume_1h",
"volume_6h",
"volume_12h",
"volume_24h"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "Sort token data results by this field",
"title": "Sort By"
},
"sort_order": {
"anyOf": [
{
"enum": [
"asc",
"desc"
],
"type": "string"
},
{
"type": "null"
}
],
"default": "desc",
"description": "The order of the sorted results",
"title": "Sort Order"
}
},
"required": [
"query",
"sort_by"
],
"title": "TokenSearchRequest",
"type": "object"
}
},
"properties": {
"token_search_requests": {
"$ref": "#/$defs/TokenSearchRequest"
}
},
"required": [
"token_search_requests"
],
"title": "search_token_detailsArguments",
"type": "object"
}