LogoLogo
  • Welcome to Alterscope
  • INTRODUCTION
    • What is DefAI?
    • What are AI Agents?
    • What is Alteron?
  • How to get started
    • Sign Up
    • Agent Framework
    • Agent Signals
      • APY Changes
      • Arbitrage Opportunities
      • Centralised Exchange Movements
      • Cyvers Security Alerts
      • DAO Proposals
      • Ecosystem In/Out-Flows
      • ERC20 Price Movements
      • Function Calls
      • Gas Fee Spikes
      • Protocol Health Alerts
      • Simple Moving Averages
      • Stablecoin Price Deviations
      • Token Transfers
      • Wallet Health Factors
      • Whale Activity
    • Agent Network
  • Data Feeds
    • API Endpoint
    • Authentication
    • API Reference
      • Development
      • Development Score
      • Security
      • Liquidity
        • Lending Protocols
        • Decentralized Exchange Protocols
        • Stablecoin Protocols
        • Derivative Protocols
        • Liquid Staking Protocols
      • Community
      • Governance
      • Governance Score
      • Blockchain
      • Oracles
      • Overall Score
      • Tokenomics
      • Tokenomics Score
      • Restaking
    • Swagger API Specification
    • Install & run cURL on Windows/MacOSX/Linux
  • Dashboard Functionalities
    • Market Insights
    • Custom API Creation (Nexus)
    • Custom Dashboards (Eagle Eye)
Powered by GitBook
On this page
  1. Data Feeds
  2. API Reference

Governance Score

Governance score for Protocols

PreviousGovernanceNextBlockchain

Last updated 1 year ago

The sample request below retrieves governance score data for the aave protocol for last 7 days.

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

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

{
   "status":true,
   "data":[
      {
         "score":0.015205467198526291,
         "timestamp":"2023-12-20T12:00:42Z"
      },
      {
         "score":0.016252412969506184,
         "timestamp":"2023-12-19T12:00:42Z"
      },
      {
         "score":0.016809456212394425,
         "timestamp":"2023-12-18T12:00:44Z"
      },
      {
         "score":0.016592931593028024,
         "timestamp":"2023-12-17T12:00:49Z"
      },
      {
         "score":0.016739279667186028,
         "timestamp":"2023-12-16T12:00:46Z"
      },
      {
         "score":0.015475361813625903,
         "timestamp":"2023-12-15T12:01:05Z"
      },
      {
         "score":0.015475361813625903,
         "timestamp":"2023-12-15T11:20:18Z"
      },
      {
         "score":0.01705700377926672,
         "timestamp":"2023-12-14T12:00:40Z"
      }
   ]
}

timestamp: Date and Time associated with the data.

score: See how Governance score is calculated

here.
supported protocols

Retrieves the governance score for the specified protocol

get

This endpoint fetches the governance score for the specified protocol for the last 7 days.

Authorizations
Path parameters
protocolstringRequired

The name of the protocol for which governance score will be fetched (in lowercase)

Responses
200
OK
application/json
404
There was an error retrieving the data.
505
Internal Server Error
get
GET /scores/governance/{protocol} HTTP/1.1
Host: api.alterscope.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "status": true,
  "data": [
    {
      "score": 1,
      "timestamp": "2025-06-14T09:14:01.993Z"
    }
  ]
}