# 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](/u/trade/concepts/provider-odds+.md) 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 |


---

# 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.lsports.eu/u/trade/user-guide/operational/fixture-logs/provider-odds.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.
