Development Score

Development Score for Blockchains and Protocols

Retrieves the aggregated Development Score of the protocols' GitHub repositories.

get

This endpoint returns the aggregated Development Score of the protocols GitHub repositories from the last 7 days.

Authorizations
Path parameters
protocolstringRequired

the name of the protocol in lowercase

Responses
200

OK

application/json
get
/scores/development/protocols/{protocol}
GET /scores/development/protocols/{protocol} HTTP/1.1
Host: api.alterscope.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "Name": "text",
  "Score": 1,
  "Timestamp": "text"
}

Note: The sample request below shows development score data for repositories of compound protocol.

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

Note: For a comprehensive list of protocols whose data can be requested please refer to supported protocols page. Note: For getting Frax Finance and Radiant Capital protocol data pass them as fraxfinance and radiantcapital(nospaces in lowercase).

Retrieves the aggregated Development Score of the Blockchains' GitHub repositories.

get

This endpoint returns the aggregated Development Score of the blockchain GitHub repositories from the last 7 days.

Authorizations
Path parameters
blockchainstringRequired

The name of the Blockchain in lowercase

Responses
200

OK

application/json
get
/scores/development/blockchain/{blockchain}
GET /scores/development/blockchain/{blockchain} HTTP/1.1
Host: api.alterscope.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "Name": "text",
  "Score": 1,
  "Timestamp": "text"
}

Note: The sample request below shows development score data for repositories of ethereum chain.

curl https://api.alterscope.org/scores/development/blockchain/ethereum -H "Authorization: Bearer <your_access_token>"

Note: For a comprehensive list of blockchain whose data can be requested please refer to supported blockchain networks page.

Retrieves the all aggregated Development Score of GitHub repositories.

get

This endpoint returns the all aggregated Development Scores of all tracked protocols and blockchains from the last 7 days.

Authorizations
Responses
200

OK

application/json
get
/scores/development
GET /scores/development HTTP/1.1
Host: api.alterscope.org
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "Name": "text",
  "Score": 1,
  "Timestamp": "text"
}
curl https://api.alterscope.org/scores/development -H "Authorization: Bearer <your_access_token>"

Last updated