# Leveraged Active Single Assets

The endpoint returns the index symbols that you can use when you query other endpoints. The endpoint does not require an API key and does not accept any parameters.

**Example URL**&#x20;

{% embed url="<https://vinterapi.com/api/v3/active_leveraged_single_assets/>" %}

## Response Fields

<table><thead><tr><th width="212">Field</th><th width="120.33333333333331">Type</th><th>Description</th></tr></thead><tbody><tr><td>symbol</td><td>string</td><td>The symbol</td></tr><tr><td>leverage</td><td>number</td><td>Leverage Number</td></tr><tr><td>underlying_symbol</td><td>string</td><td>Underlying symbol</td></tr></tbody></table>

<mark style="color:blue;">`GET`</mark> <https://vinterapi.com/api/v3/active_leveraged_single_assets/>

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "symbol": "ada-usd-p-x-1-d",
      "leverage": -1.0,
      "underlying_symbol": "ada-usd-p-d"
    },
    {
      "symbol": "ada-usd-p-x2-d",
      "leverage": 2.0,
      "underlying_symbol": "ada-usd-p-d"
    },
    {
      "symbol": "ada-usd-p-x3-d",
      "leverage": 3.0,
      "underlying_symbol": "ada-usd-p-d"
    }
  ],
  "params": {
    
  }
}
```

{% endtab %}
{% endtabs %}

### [Try the API](https://vinterapi.com/apidocs)
