Tokenomics Score

Tokenomics score for Protocols

Retrieves the aggregated Tokenomics Score of the protocols.

get

This endpoint returns the aggregated Tokenomics Score of the protocols from the last 7 days.

Authorizations
Path parameters
protocolstringRequired

the name of the protocol in lowercase

Responses
200

OK

application/json
get
/scores/tokenomics/{protocol}
GET /scores/tokenomics/{protocol} HTTP/1.1
Host: api.alterscope.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "status": true,
  "data": [
    {
      "score": 0.22448096615490729,
      "timestamp": "2023-09-11T12:00:06Z"
    }
  ]
}

The sample request below retrieves tokenomics score data of compound protocol for past 7 days.

curl https://api.alterscope.org/scores/tokenomics/compound -H "Authorization: Bearer <your_access_token>"

For a comprehensive list of protocols whose tokenomics score data can be requested please refer to supported protocols page.

Last updated