# 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:

{% code overflow="wrap" %}

```javascript
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));
```

{% endcode %}

**API Output Example**

<pre class="language-json"><code class="lang-json">{
    "status": "success",
    "data": [
        {
            "ticker": "MATIC",
            "fingerprint": "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0",
            "risk_rating": "AAA"
        },
        {
            "ticker": "LINK",
            "fingerprint": "0x514910771af9ca656af840dff83e8264ecf986ca",
            "risk_rating": "AA"
        },
        {
            "ticker": "UNI",
            "fingerprint": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
            "risk_rating": "AA"
        },
<strong>        ]
</strong>}       
</code></pre>

**What am I seeing?**

| Rating  | Explanation        |
| ------- | ------------------ |
| AAA - A | Investment Grade   |
| BBB - B | Speculative        |
| CCC - C | Highly Speculative |
| D       | Junk               |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xerberus.gitbook.io/documentation/apis/risk-ratings-api/ethereum.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
