gRPC
gRPC
Endpoint
enterprise.guardis.io:443Authentication
x-api-key: your_api_key_hereService Definition
syntax = "proto3";
package enterprise.v1;
import "google/protobuf/timestamp.proto";
// IndicatorsService provides real-time indicator streaming for liquidity pools
service IndicatorsService {
// StreamIndicators streams indicator updates every minute for updated pools
rpc StreamIndicators(StreamIndicatorsRequest) returns (stream IndicatorUpdate);
}
// Request to start streaming indicators
message StreamIndicatorsRequest {
// Reserved for future filtering options
}
// An indicator update for a pool
message IndicatorUpdate {
// Timestamp when the update was generated
google.protobuf.Timestamp timestamp = 1;
// Indicator for a pool updated during this interval
CurrentIndicator indicator = 2;
}
// Current indicator metrics for a liquidity pool
message CurrentIndicator {
// Identification
string pair_address = 1;
string token_address = 2;
// Wallet metrics
int64 total_wallets = 3;
int64 organic_wallets = 4;
int64 organic_profitable_wallets = 5;
string organic_to_total_wallets_ratio = 6;
string bot_to_total_wallets_ratio = 7;
string profitable_organic_to_total_organic_ratio = 8;
// Volume metrics
string total_volume_usd = 9;
string organic_volume_usd = 10;
string bot_volume_ratio = 11;
string organic_volume_ratio = 12;
string profitable_volume = 13;
string profitable_volume_total_volume_ratio = 14;
// Behavioral metrics
string organic_mean_hold_seconds = 15;
string organic_mean_trade_frequency_seconds = 16;
// Smart money metrics
string smart_money_score = 17;
string raw_smart_money_score = 18;
string smart_money_influx_10min = 19;
string smart_money_outflux_10min = 20;
string raw_smart_money_influx = 21;
string raw_smart_money_outflux = 22;
int64 smart_holders = 23;
int64 raw_holders = 24;
string smart_to_raw_holders_ratio = 25;
// Price & status
string price_usd = 26;
string status = 27;
int32 attempts = 28;
google.protobuf.Timestamp created_at = 29;
}Request Parameters
Response Format
Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Field
Type
Description
Example Usage
Connection Best Practices
Last updated
