Card snapshot
a2a.sntl.site
·
2026-06-22 02:03:21 UTC
·
2728539de3042268dce55154ff1d1729795e8ddbaa275b66350f43d6f6816860
This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.
{
"name": "SNTL Helium Intelligence",
"description": "Pay-per-query access to an enriched, AI-classified Helium / Solana DePIN event datalake: threat & anomaly intelligence over enriched on-chain events across 12 program shards. Priced in USDC via x402 \u2014 no signup, no API key, pay per call; first tier free.",
"version": "1.0.0",
"url": "https://a2a.sntl.site",
"provider": {
"organization": "Web Solutions LLC",
"url": "https://sntl.site"
},
"capabilities": {
"streaming": false,
"pushNotifications": false,
"stateTransitionHistory": false
},
"defaultInputModes": [
"application/json"
],
"defaultOutputModes": [
"application/json"
],
"skills": [
{
"id": "query-datalake",
"name": "Query the Helium intelligence datalake",
"description": "Run a read-only SQL SELECT over enriched Helium/Solana events (SELECT-only, LIMIT<=1000, allow-listed tables). Returns rows + rowCount. $0.01 USDC per call.",
"tags": [
"helium",
"depin",
"solana",
"sql",
"enriched-events",
"threat-intel",
"anomaly"
],
"examples": [
"SELECT transaction_id, threat_assessment, anomaly_score, summary FROM enriched_events_base WHERE threat_assessment = 'critical' ORDER BY block_time DESC LIMIT 50"
]
},
{
"id": "lookup-event",
"name": "Look up one enriched event",
"description": "Fetch a single enriched event object by its transaction_id. $0.01 USDC per call.",
"tags": [
"helium",
"event-lookup",
"forensics",
"solana"
],
"examples": [
"GET /api/v1/event/<transaction_id>"
]
},
{
"id": "wallet-history",
"name": "Wallet intelligence history (free)",
"description": "FREE transparency surface: a wallet's payment + query history against our flagged dataset. Run a suspect list against our anomaly record.",
"tags": [
"transparency",
"wallet",
"history",
"aml",
"free"
],
"examples": [
"GET /api/v1/ledger/<wallet_address>"
]
},
{
"id": "threats-critical",
"name": "Critical threats",
"description": "Enriched Helium/Solana events classified CRITICAL threat. $0.01 USDC/call.",
"tags": [
"threat",
"critical",
"security",
"depin",
"helium"
],
"examples": [
"GET /api/v1/threats/critical?limit=50"
]
},
{
"id": "threats-high",
"name": "High threats",
"description": "Enriched events classified HIGH threat. $0.01 USDC/call.",
"tags": [
"threat",
"high",
"security",
"depin",
"helium"
],
"examples": [
"GET /api/v1/threats/high?limit=50"
]
},
{
"id": "threats-medium",
"name": "Medium threats",
"description": "Enriched events classified MEDIUM threat. $0.01 USDC/call.",
"tags": [
"threat",
"medium",
"security",
"depin",
"helium"
],
"examples": [
"GET /api/v1/threats/medium?limit=50"
]
},
{
"id": "threats-low",
"name": "Low threats",
"description": "Enriched events classified LOW threat. $0.01 USDC/call.",
"tags": [
"threat",
"low",
"security",
"depin",
"helium"
],
"examples": [
"GET /api/v1/threats/low?limit=50"
]
},
{
"id": "anomalies",
"name": "Top anomalies",
"description": "Highest anomaly-score enriched events (observed score range 0..0.6). $0.01 USDC/call.",
"tags": [
"anomaly",
"scoring",
"depin",
"helium"
],
"examples": [
"GET /api/v1/anomalies?limit=50"
]
},
{
"id": "stats",
"name": "Threat distribution (free)",
"description": "FREE: live counts of enriched events by threat tier \u2014 the menu manifest.",
"tags": [
"meta",
"free",
"stats"
],
"examples": [
"GET /api/v1/stats?limit=50"
]
}
],
"protocol": "x402",
"treasury": "DDxMHJceaNE9tWohpauakaek8Q7P7CJ2jkzhiHRybCmt",
"inventory": {
"total_rows": 602578,
"tables": [
{
"table": "enriched_events_base",
"rows": 294650,
"label": "Enriched threat / anomaly events \u2014 the core product"
},
{
"table": "world_state_chronicle",
"rows": 217962,
"label": "World-state chronicle (dimension / time / space / power chains)"
},
{
"table": "events_lazy",
"rows": 62965,
"label": "REWARDS"
},
{
"table": "events_daos",
"rows": 9512,
"label": "SUBDAOS"
},
{
"table": "events_entity",
"rows": 6997,
"label": "ENTITY"
},
{
"table": "events_data",
"rows": 5760,
"label": "ORACLE"
},
{
"table": "events_treasury",
"rows": 3465,
"label": "TREASURY"
},
{
"table": "events_voter",
"rows": 294,
"label": "VOTER"
},
{
"table": "events_lazyt",
"rows": 17,
"label": "STORAGE"
},
{
"table": "event_hnt",
"rows": 387,
"label": "HNT"
},
{
"table": "event_iot",
"rows": 27,
"label": "IOT"
},
{
"table": "event_dc",
"rows": 542,
"label": "DC"
},
{
"table": "event_mobile",
"rows": 0,
"label": "MOBILE"
}
],
"counted_at_boot": true
},
"endpoints": [
{
"path": "/api/v1/query",
"method": "POST",
"price_usdc": 0.01,
"description": "SQL SELECT over the enriched Helium datalake (602,578 rows, SELECT-only, LIMIT<=1000)",
"input_schema": {
"type": "object",
"properties": {
"sql": {
"type": "string"
},
"params": {
"type": "array"
}
},
"required": [
"sql"
]
},
"output_schema": {
"type": "object",
"properties": {
"rows": {
"type": "array"
},
"rowCount": {
"type": "number"
}
}
}
},
{
"path": "/api/v1/event/:transaction_id",
"method": "GET",
"price_usdc": 0.01,
"description": "One enriched event by transaction_id (404 if absent)"
},
{
"path": "/api/v1/ledger/:wallet",
"method": "GET",
"price_usdc": 0,
"description": "FREE \u2014 a wallet's payment + query history (transparency)"
}
],
"pricing": {
"model": "pay-per-call",
"unit_usdc": 0.01,
"free_tier": true
}
}