Summary Statistics
Retrieve aggregate social metrics for a token including sentiment, reach, and post volume.
Note: Social data collection begins only after a token has migrated from a launchpad or has locked liquidity. This prevents spam from low-quality tokens.
Endpoint
GET https://enterprise.guardis.io/v1/socials/summaryAuthentication
Include your API key in the X-API-Key header.
X-API-Key: your_api_key_hereQuery Parameters
token_address
string
Yes
The mint address of the token
Example Request
curl -X GET "https://enterprise.guardis.io/v1/socials/summary?token_address=5GTRGGnmbMCjCUnc3xMweCgVqDEtSDxTdvVdwutcpump" \
-H "X-API-Key: your_api_key_here"Response Format
Field Reference
token_address
string
The mint address of the token
total_social_sentiment
number
Aggregate sentiment score from -1.0 (negative) to 1.0 (positive)
total_social_reach
integer
Total follower count across all accounts that have posted about this token
total_number_of_posts
integer
Total number of social posts collected for this token
tracking_since
string
ISO 8601 timestamp when social tracking began for this token
last_updated
string
ISO 8601 timestamp when metrics were last updated
Sentiment Score Guide
0.5 to 1.0
Strongly positive sentiment
0.1 to 0.5
Moderately positive sentiment
-0.1 to 0.1
Neutral sentiment
-0.5 to -0.1
Moderately negative sentiment
-1.0 to -0.5
Strongly negative sentiment
Example Usage
JavaScript:
Python:
Error Responses
400
Missing or invalid token_address parameter
401
Missing or invalid API key
404
Token not found or social tracking not yet active
422
Invalid Solana mint address format
500
Internal server error
Last updated
