🌿Step 8 - Scoring ESG

With this endpoint, you can determine the ESG score of your portfolio bychecking the score of any token.

1 - This endpoint will give you the possibility to obtain the ESG score for all cryptos:

get
Authorizations
Responses
200

OK

*/*
get
/v1/esg/last/esg-score
GET /v1/esg/last/esg-score HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

OK

[
  {
    "symbol": "text",
    "ts": "2025-10-19T01:54:00.837Z",
    "e": "text",
    "s": "text",
    "g": "text",
    "score": "text"
  }
]

OAuth : client_auth

2 - And with this endpoint you can check the ESG score of a particular crypto.

get
Authorizations
Path parameters
coinstringRequired
Responses
200

OK

*/*
get
/v1/esg/last/esg-score/{coin}
GET /v1/esg/last/esg-score/{coin} HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

OK

{
  "symbol": "text",
  "ts": "2025-10-19T01:54:00.837Z",
  "e": "text",
  "s": "text",
  "g": "text",
  "score": "text"
}

OAuth : client_auth

Last updated