For the complete documentation index, see llms.txt. This page is also available as Markdown.

Stats

Get score distribution by level

get
Responses
200

Successful response

application/json
get/stats/score-distribution
GET /api/v2/stats/score-distribution HTTP/1.1
Host: api.ethos.network
Accept: */*
{
  "distribution": [
    {
      "level": "untrusted",
      "profileCount": 1,
      "nonProfileCount": 1
    }
  ],
  "totals": {
    "totalUsers": 1,
    "totalProfiles": 1,
    "totalNonProfiles": 1
  }
}

Get human verification statistics

get
Responses
200

Successful response

application/json
get/stats/human-verification
GET /api/v2/stats/human-verification HTTP/1.1
Host: api.ethos.network
Accept: */*
{
  "summary": {
    "verifiedCount": 1,
    "qualifiedVerifierCount": 1,
    "pendingCount": 1
  },
  "progressDistribution": [
    {
      "bonds": 1,
      "userCount": 1
    }
  ],
  "verifiedByScoreLevel": [
    {
      "level": "untrusted",
      "count": 1
    }
  ],
  "methodBreakdown": [
    {
      "method": "IRL",
      "count": 1
    }
  ]
}

Last updated