Analyze social media reputation and trust signals for any x402 server URL via paid API call.
What it does
The `get_social_trust` endpoint from t54 Labs' x402-secure API performs social media reputation analysis, primarily drawing from Twitter/X and community feedback. Given a URL of an x402 server, it returns a social sentiment score, trust indicators, and result data that can help detect fake engagement patterns and inform reputation-based decisions.
The endpoint follows the x402 payment protocol on the Base network, requiring a micropayment of $0.01 USDC per call (maxAmountRequired: 10000 in 6-decimal USDC units). It accepts a POST request with a JSON body containing a single required field — `url` — which should be the URL of an x402 server to analyze (e.g., `https://mesh.heurist.xyz`). The response includes the analyzed URL, server name, status, a nullable social sentiment score (numeric), a nullable result data object, and a last-validated timestamp.
The API is part of the broader x402-secure platform by t54 Labs, which provides an open-source SDK and proxy layer adding security and risk assessment to x402 agent payments. The platform supports both Base and Solana chains. No OpenAPI spec or detailed documentation pages were found at the API origin — the `/docs`, `/api`, `/pricing`, and `/README` paths all return 404. The output schema is derived entirely from the x402 challenge payload.
Capabilities
Use cases
- —Evaluate the social reputation of an x402 server before transacting with it
- —Detect fake engagement or bot-driven social signals around a crypto project
- —Score community sentiment for due-diligence in automated agent workflows
- —Feed trust signals into a broader risk-assessment pipeline for autonomous payments
- —Monitor changes in social reputation of partner APIs over time
Fit
Best for
- —AI agents that need pre-transaction reputation checks on x402 endpoints
- —Automated due-diligence pipelines evaluating crypto project credibility
- —Developers building trust layers on top of the x402 payment protocol
Not for
- —General-purpose social media analytics unrelated to x402 servers
- —High-volume bulk social media scraping or data export
- —Analyzing non-web-service entities (individuals, physical businesses)
Quick start
curl -X POST https://x402-secure-api.t54.ai/x402/tools/get_social_trust \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-encoded-payment-payload>" \
-d '{"url": "https://mesh.heurist.xyz"}'Example
Request
{
"url": "https://mesh.heurist.xyz"
}Response
{
"url": "https://mesh.heurist.xyz",
"status": "analyzed",
"result_data": {
"positive_ratio": 0.68,
"twitter_mentions": 145,
"fake_engagement_flag": false
},
"server_name": "Heurist Mesh",
"last_validated": "2025-01-15T12:00:00Z",
"social_sentiment_score": 0.72
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) with a clear output schema in the challenge payload, but there is no OpenAPI spec, no documentation pages, and no example responses available. The response schema and use-case details are inferred from the challenge description and field names. The example response is fabricated based on the output schema structure.
Warnings
- —No OpenAPI spec or documentation found — /docs, /api, /pricing, /README all return 404
- —Example response is synthetically constructed from the output schema; actual response format may differ
- —The endpoint analyzes x402 server URLs specifically, not arbitrary social media accounts
- —result_data object structure is unspecified beyond 'object|null'
Citations
- —Endpoint returns 402 with x402 challenge on POST, price is $0.01 USDC (maxAmountRequired: 10000) on Base networkhttps://x402-secure-api.t54.ai/x402/tools/get_social_trust
- —x402-secure is an open-source SDK and proxy by t54 Labs that adds a security layer to x402 payments, supporting Base and Solanahttps://x402-secure-api.t54.ai
- —The url body field description states: 'The URL of the x402 server to analyze social presence'https://x402-secure-api.t54.ai/x402/tools/get_social_trust
- —/docs, /api, /pricing, /README all return 404 Not Foundhttps://x402-secure-api.t54.ai/docs