get_project_data
Retrieve detailed cryptocurrency project information using token symbols. Access raw JSON data from Mobula API for insights on specific tokens like BTC or ETH.
Instructions
Fetch cryptocurrency project data from Mobula API.
Args:
token_symbol (str): The symbol of the cryptocurrency token (e.g., 'BTC', 'ETH')
Returns:
dict: Raw JSON response from Mobula API containing project details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token_symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"token_symbol": {
"title": "Token Symbol",
"type": "string"
}
},
"required": [
"token_symbol"
],
"title": "get_project_dataArguments",
"type": "object"
}