get_user_data
Retrieve user data by specifying data type and protocol ID using the REI Crypto MCP Server, enabling direct access to user-related information in crypto applications.
Instructions
GET /api/userData/{type}/{protocolId}
Get user data by type and protocol.
Parameters:
type: data type (e.g., 'activeUsers')
protocol_id: protocol ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protocol_id | Yes | ||
type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"protocol_id": {
"title": "Protocol Id",
"type": "integer"
},
"type": {
"title": "Type",
"type": "string"
}
},
"required": [
"type",
"protocol_id"
],
"title": "get_user_dataArguments",
"type": "object"
}