# Overtime V2 collaterals

{% hint style="info" %} <mark style="color:blue;">**Users placing trades with THALES will get 1% extra payouts for each game they have on their ticket.**</mark>
{% endhint %}

More about the V2 collateral upgrade in [the Medium article](https://medium.com/@OvertimeMarkets.xyz/overtime-v2-public-beta-is-live-e2109ee4d348).

## REST API <a href="#rest-api" id="rest-api"></a>

<mark style="color:green;">`GET`</mark>  `https://api.overtime.io/overtime-v2/collaterals`

See collaterals API endpoint with request/response examples under [Postman documentation](https://documenter.getpostman.com/view/1435701/2sA3XY5Hao#5e042a42-2df9-4453-8995-a44d32eb80e8).

### Example Request

<https://api.overtime.io/overtime-v2/networks/10/collaterals>

### Example Response

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

```json
{
  {
    "symbol": "USDC",
    "name": "USD Coin",
    "address": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
    "decimals": 6,
    "default": true
  },
  {
    "symbol": "THALES",
    "name": "Thales DAO Token",
    "address": "0x217d47011b23bb961eb6d93ca9945b7501a5bb11",
    "decimals": 18,
    "default": false
  }
}
```

{% endtab %}
{% endtabs %}

### Response Parameters <a href="#response-parameters" id="response-parameters"></a>

<table><thead><tr><th width="192">Name</th><th width="178">Type</th><th>Description</th></tr></thead><tbody><tr><td>symbol</td><td>string</td><td>Collateral symbol</td></tr><tr><td>name</td><td>string</td><td>Collateral name</td></tr><tr><td>address</td><td>string</td><td>Collateral address</td></tr><tr><td>decimals</td><td>number</td><td>Number of decimals</td></tr><tr><td>default</td><td>boolean</td><td>Is default collateral: <code>true</code> or <code>false</code>.</td></tr></tbody></table>


---

# 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://docs.overtime.io/overtime-v2-integration/overtime-v2-collaterals.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.
