Skip to content

Statistics

Get wallet statistics and analytics.

Endpoint

GET/v1/stats/wallet/{wallet_address}

Request

Headers

http
Authorization: Bearer YOUR_API_KEY
X-Wallet-Address: YOUR_WALLET_ADDRESS

Path Parameters

ParameterTypeDescription
wallet_addressstringWallet to get stats for

Response

json
{
  "wallet_address": "5K8vK...",
  "total_proofs_submitted": 25,
  "total_verifications": 150,
  "successful_verifications": 145,
  "failed_verifications": 5,
  "verification_success_rate": 96.7,
  "average_reputation_score": 85.5,
  "first_activity": "2025-01-01T00:00:00Z",
  "last_activity": "2025-12-20T10:30:00Z",
  "proofs_by_robot": {
    "robot-alpha-01": 10,
    "robot-beta-02": 15
  },
  "proofs_by_task": {
    "pick-and-place": 12,
    "quality-inspection": 13
  },
  "activity_timeline": [
    {"date": "2025-12-01", "proof_count": 3},
    {"date": "2025-12-02", "proof_count": 5}
  ]
}

Examples

cURL

bash
curl https://api.actobotics.net/v1/stats/wallet/5K8vK... \
  -H "Authorization: Bearer acto_abc123..." \
  -H "X-Wallet-Address: 5K8vK..."

Python SDK

python
from acto.client import ACTOClient

client = ACTOClient(api_key="...", wallet_address="...")

# Get your own stats
stats = client.get_wallet_stats()

print(f"Total proofs: {stats.total_proofs_submitted}")
print(f"Success rate: {stats.verification_success_rate}%")
print(f"Avg reputation: {stats.average_reputation_score}")

# Breakdown by robot
for robot, count in stats.proofs_by_robot.items():
    print(f"  {robot}: {count} proofs")

Response Fields

FieldDescription
total_proofs_submittedTotal proofs from this wallet
total_verificationsTotal verification requests
successful_verificationsVerifications that passed
failed_verificationsVerifications that failed
verification_success_rateSuccess percentage
average_reputation_scoreAverage proof quality score
first_activityFirst proof submission
last_activityMost recent activity
proofs_by_robotBreakdown by robot_id
proofs_by_taskBreakdown by task_id
activity_timelineDaily proof counts

https://www.actobotics.net