Skip to main content
GET
https://api.mrdoge.co
/
v2
/
matches
/
{eventId}
/
live-odds
Live Odds
curl --request GET \
  --url https://api.mrdoge.co/v2/matches/{eventId}/live-odds \
  --header 'Authorization: <authorization>'
{
  "eventId": "<string>",
  "dataSource": "<string>",
  "capturedAt": "<string>",
  "liveMarkets": [
    {
      "marketId": "<string>",
      "marketSysname": "<string>",
      "marketCaption": "<string>",
      "betItems": [
        {
          "code": "<string>",
          "caption": "<string>",
          "price": 123,
          "priceChange": 123,
          "isAvailable": true
        }
      ]
    }
  ]
}
Requires Authentication: This endpoint costs 2 credits per request.
Use this endpoint when you need the complete live odds book for an event. It returns every market and its live bet items exactly as they are stored in our live odds engine—perfect for building real-time betting interfaces or price monitoring dashboards.

Path Parameters

eventId
string
required
The event identifier or slug (both 43108087 and 43108087-finland-vs-andorra are supported).

Headers

Authorization
string
default:"Bearer "
required
Your API key for authentication.

Query Parameters

dataSource
string
default:"novibet"
Optional odds provider (novibet, bet365, etc.). Defaults to novibet.

Response

eventId
string
The event identifier you requested.
dataSource
string
Data source used for this snapshot.
capturedAt
string
ISO timestamp of the most recent odds snapshot.
liveMarkets
array
Array of live markets, each with its bet items.

Example Request

curl -H "Authorization: Bearer sk_live_..." \
  "https://api.mrdoge.co/v2/matches/43108087/live-odds"

Example Response

{
  "data": {
    "eventId": "43108087",
    "dataSource": "novibet",
    "capturedAt": "2025-11-17T17:25:01.015Z",
    "liveMarkets": [
      {
        "marketId": "1508075182",
        "marketSysname": "SOCCER_MATCH_RESULT",
        "marketCaption": "Match Result",
        "betItems": [
          { "code": "1", "caption": "Finland", "price": 1.03, "isAvailable": true },
          { "code": "X", "caption": "Draw", "price": 11.5, "isAvailable": true },
          { "code": "2", "caption": "Andorra", "price": 67.0, "isAvailable": true }
        ]
      }
    ]
  }
}