Endpoint

This endpoint returns probabilities for a sports event's specific market with specifiers.

Endpoint Parameters

Parameter

Description

Possible Values

urn_type

Required

The type of event to look up.

sr:match only

id

Required

The sport event ID to get probabilities for.

Example: 41507091

market_id

Required

The market ID to get probabilities for.

See Market descriptions endpoint for list of markets we offer

specifier

Required

The specifier value

Example: total=2.5

Market probabilities with specifiers

get

Get probabilities for a sport event's specific market with specifiers. Response is returned in XML format.

Authorizations
Path parameters
urn_typestring · enumRequired

The event type you want to look up.

Possible values:
idintegerRequired

Get probabilities for the event ID.

market_idintegerRequired

The ID for the market.

specifierstringRequired

The Specifier value

Responses
200

successful operation

application/xml
get
GET /v1/probabilities/{urn_type}:{id}/{market_id}/{specifier} HTTP/1.1
Host: global.api.betradar.com
x-access-token: YOUR_API_KEY
Accept: */*
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<cashout product="1" event_id="sr:match:41326329" timestamp="1687860045897">
  <sport_event_status status="0" match_status="0"/>
  <odds>
    <market status="1" cashout_status="1" id="18" specifiers="total=2.5">
      <outcome id="12" probabilities="0.3942748459412695" active="1"/>
      <outcome id="13" probabilities="0.6057251540587305" active="1"/>
    </market>
  </odds>
</cashout>

Last updated

Was this helpful?