Skip to main content
GET
/
v1
/
stats
Stats
curl --request GET \
  --url https://api.agentscore.sh/v1/stats
{
  "wallets_scored": 123,
  "transactions_indexed": 123,
  "total_volume_usdc": 123,
  "verified_agents": 123,
  "chains_supported": [
    "<string>"
  ],
  "model_version": "<string>",
  "last_sync_time": {}
}

Overview

Returns high-level ecosystem statistics including total wallets scored, transaction volume, and supported chains. Useful for dashboards, status pages, and integration health checks. No authentication required.

Response

wallets_scored
number
required
Total number of wallets with computed scores.
transactions_indexed
number
required
Total transactions processed by the indexing pipeline.
total_volume_usdc
number
required
Aggregate USDC volume across all indexed transactions.
verified_agents
number
required
Agents with verified on-chain identity (ERC-8004 matched).
chains_supported
string[]
required
List of chains currently indexed.
model_version
string
required
Current scoring model version.
last_sync_time
string | null
required
ISO 8601 timestamp of the last data sync.

Example

curl https://api.agentscore.sh/v1/stats
Response
{
  "wallets_scored": 37208,
  "transactions_indexed": 7254580,
  "total_volume_usdc": 1284350.42,
  "verified_agents": 17,
  "chains_supported": ["base", "ethereum"],
  "model_version": "v1",
  "last_sync_time": "2026-03-08T17:15:00Z"
}