Ethereum

The following endpoints are available for the Cardano ecosystem

/risk/ethereum

METHOD: GET

This endpoint provides risk scores for polygon assets on the Xerberus platform. The response will include the ticker, fingerprint (token address), and risk rating for each asset.

Make sure to include the required headers in your request:

  • x-api-key: Your API key.

  • x-user-email: Your email address associated with your account.

Here is an example of how to make the request using axios with NodeJS:

axios.get('https://api.xerberus.io/public/v1/risk/ethereum', {
  headers: {
    'x-api-key': 'your-api-key',
    'x-user-email': 'your-email'
  }
})
  .then(response => console.log(response.data))
  .catch(error => console.error(error));

API Output Example

{
    "status": "success",
    "data": [
        {
            "ticker": "MATIC",
            "fingerprint": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0",
            "risk_rating": "AAA"
        },
        {
            "ticker": "LINK",
            "fingerprint": "0x514910771af9ca656af840dff83e8264ecf986ca",
            "risk_rating": "AA"
        },
        {
            "ticker": "UNI",
            "fingerprint": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
            "risk_rating": "AA"
        },
        ]
}       

What am I seeing?

Rating
Explanation

AAA - A

Investment Grade

BBB - B

Speculative

CCC - C

Highly Speculative

D

Junk

Last updated