> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v2/endpoint-overview/odds/get-odds-by-fixture-id-and-bookmaker-id.md).

# GET Odds by Fixture ID and Bookmaker ID

### `GET` Odds by Fixture ID and Bookmaker ID

```
https://soccer.sportmonks.com/api/v2.0/odds/fixture/{fixture_ID}/bookmaker/{bookmaker_ID}
```

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | NO      |
| Allowed nested includes | 0       |

#### Parameters

No parameters available for this endpoint.

#### Include options

No includes available for this endpoint.

#### Example response

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

```
https://soccer.sportmonks.com/api/v2.0/odds/fixture/16475287/bookmaker/1?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": [
        {
            "id": 1,
            "name": "3Way Result",
            "suspended": false,
            "bookmaker": {
                "data": [
                    {
                        "id": 1,
                        "name": "10Bet",
                        "odds": {
                            "data": [
                                {
                                    "value": "1.05",
                                    "handicap": null,
                                    "total": null,
                                    "label": "1",
                                    "probability": "95.24%",
                                    "dp3": "1.050",
                                    "american": -2000,
                                    "factional": null,
                                    "winning": true,
                                    "stop": false,
                                    "bookmaker_event_id": "47773472",
                                    "last_update": {
                                        "date": "2020-08-02 15:20:16.425924",
                                        "timezone_type": 3,
                                        "timezone": "UTC"
                                    }
                                },
                                {
                                    "value": "13.75",
                                    "handicap": null,
                                    "total": null,
                                    "label": "X",
                                    "probability": "7.27%",
                                    "dp3": "13.750",
                                    "american": 1275,
                                    "factional": null,
                                    "winning": false,
                                    "stop": false,
                                    "bookmaker_event_id": "47773472",
                                    "last_update": {
                                        "date": "2020-08-02 15:20:16.425958",
                                        "timezone_type": 3,
                                        "timezone": "UTC"
                                    }
                                },
                                {
                                    "value": "25.25",
                                    "handicap": null,
                                    "total": null,
                                    "label": "2",
                                    "probability": "3.96%",
                                    "dp3": "25.250",
                                    "american": 2425,
                                    "factional": null,
                                    "winning": false,
                                    "stop": false,
                                    "bookmaker_event_id": "47773472",
                                    "last_update": {
                                        "date": "2020-08-02 15:20:16.425974",
                                        "timezone_type": 3,
                                        "timezone": "UTC"
                                    }
                                }
                            ]
                        }
                    }
                ]
            }
        },
        {
            "id": 10,
            "name": "Home/Away",
            "suspended": false,
            "bookmaker": {
                "data": [
                    {
                        "id": 1,
                        "name": "10Bet",
                        "odds": {
                            "data": [
                                {
                                    "value": "21.50",
                                    "handicap": null,
                                    "total": null,
                                    "label": "2",
                                    "probability": "4.65%",
                                    "dp3": "21.500",
                                    "american": 2050,
                                    "factional": null,
                                    "winning": false,
                                    "stop": false,
                                    "bookmaker_event_id": "47773472",
                                    "last_update": {
                                        "date": "2020-08-02 15:20:16.610442",
                                        "timezone_type": 3,
                                        "timezone": "UTC"
                                    }
                                }
                            ]
                        }
                    }
                ]
            }
        },
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Check this endpoint in Postman.\
&#x20;                                                             [![Run in Postman](https://run.pstmn.io/button.svg)](https://football-postman.sportmonks.com/#6c912f01-2439-464d-b900-27f6aaf6066e)
{% endhint %}
