Sorts caller-supplied non-negative balances and computes the standard finite-sam
Sorts caller-supplied non-negative balances and computes the standard finite-sample Gini coefficient plus top-one and top-ten-percent shares. Results cover only supplied accounts and do not identify common ownership, custodians, vesting, delegation, or off-chain claims.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
953 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://gov.halowerk.com/v1/token-gini-index
| Category | Market data |
|---|---|
| Provider host | gov.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 953 ms |
Example input (from the provider)
{
"body": {
"holders": [
{
"balance": 10,
"holder_id": "h1"
},
{
"balance": 20,
"holder_id": "h2"
},
{
"balance": 30,
"holder_id": "h3"
},
{
"balance": 140,
"holder_id": "h4"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"holders": {
"items": {
"additionalProperties": false,
"properties": {
"balance": {
"maximum": 1e+24,
"minimum": 0,
"type": "number"
},
"holder_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"holder_id",
"balance"
],
"type": "object"
},
"maxItems": 100000,
"minItems": 1,
"type": "array"
}
},
"required": [
"holders"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}