# Provider Odds

By default, all TRADE clients receive access to **Provider Odds**, which are visible **only in the Logs View** of each market update. This view displays the original raw odds by each selected provider in your provider list.

{% hint style="info" %}
If you're using a Provider Odds<sup>+</sup>, you have access to [ProviderMarket](https://docs.lsports.eu/u/trade/concepts/provider-odds+) data directly in your feed, and the logs will reflect your full messages
{% endhint %}

{% tabs %}
{% tab title="JSON" %}

```json
  "ProviderOdds": [
              {
                "Id": 8,
                "Name": "Bet365",
                "LastUpdate": "2020-05-21T08:46:25.8354082Z",
                "Bets": [
                  {
                    "Name": "1",
                    "Status": 1,
                    "StartPrice": "5.29",
                    "Price": "4.75",
                    "LastUpdate": "2020-05-21T08:46:25.8354082Z"
                  },
                  {
                    "Name": "2",
                    "Status": 1,
                    "StartPrice": "1.75",
                    "Price": "1.571",
                    "LastUpdate": "2020-05-21T08:46:25.8354082Z"
                  },
                  {
                    "Name": "X",
                    "Status": 1,
                    "StartPrice": "4.176",
                    "Price": "3.75",
                    "LastUpdate": "2020-05-21T08:46:25.8354082Z"
                  }
                ]
              }
            ]
```

{% endtab %}

{% tab title="XML" %}

```xml
 <ProviderOdds>
          <Id>8</Id>
          <Name>Bet365</Name>
          <LastUpdate>2020-05-21T08:46:25.8354082Z</LastUpdate>
          <Bets>
            <Name>1</Name>
            <Status>1</Status>
            <StartPrice>5.29</StartPrice>
            <Price>4.75</Price>
            <LastUpdate>2020-05-21T08:46:25.8354082Z</LastUpdate>
          </Bets>
          <Bets>
            <Name>2</Name>
            <Status>1</Status>
            <StartPrice>1.75</StartPrice>
            <Price>1.571</Price>
            <LastUpdate>2020-05-21T08:46:25.8354082Z</LastUpdate>
          </Bets>
          <Bets>
            <Name>X</Name>
            <Status>1</Status>
            <StartPrice>4.176</StartPrice>
            <Price>3.75</Price>
            <LastUpdate>2020-05-21T08:46:25.8354082Z</LastUpdate>
          </Bets>
</ProviderOdds>
```

{% endtab %}
{% endtabs %}

**Provider Odds**

| **Element** | **Data Type** | **Description**                    |
| ----------- | ------------- | ---------------------------------- |
| Id          | int           | Provider Id                        |
| Name        | string        | Provider name                      |
| LastUpdate  | DateTime      | Last time any market field updated |

**Bets**

| **Element**                                                                                                                     | **Data Type** | **Description**                                   |
| ------------------------------------------------------------------------------------------------------------------------------- | ------------- | ------------------------------------------------- |
| Name                                                                                                                            | int           | Provider's bet name                               |
| [Status](https://github.com/lsportsltd/lsports-products-docs/blob/main/enumerations/bet-settlements-and-statuses.md#bet-status) | enum          | Provider's bet status                             |
| StartPrice                                                                                                                      | double        | Current provider's fair price                     |
| Price                                                                                                                           | double        | Current provider's bet price                      |
| LastUpdate                                                                                                                      | DateTime      | Last time bet price was updated from the provider |
